Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fractions instantiation revisited #72902

Open
wm75 mannequin opened this issue Nov 16, 2016 · 13 comments
Open

Fractions instantiation revisited #72902

wm75 mannequin opened this issue Nov 16, 2016 · 13 comments
Labels
3.8 only security fixes stdlib Python modules in the Lib dir type-bug An unexpected behavior, bug, or error

Comments

@wm75
Copy link
Mannequin

wm75 mannequin commented Nov 16, 2016

BPO 28716
Nosy @rhettinger, @mdickinson, @scoder, @stevendaprano, @serhiy-storchaka, @jdemeyer, @eric-wieser, @wm75, @MojoVampire
Files
  • fractions.patch
  • Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.

    Show more details

    GitHub fields:

    assignee = None
    closed_at = None
    created_at = <Date 2016-11-16.18:06:27.650>
    labels = ['3.8', 'type-bug', 'library']
    title = 'Fractions instantiation revisited'
    updated_at = <Date 2019-08-05.09:04:19.247>
    user = 'https://github.com/wm75'

    bugs.python.org fields:

    activity = <Date 2019-08-05.09:04:19.247>
    actor = 'jdemeyer'
    assignee = 'none'
    closed = False
    closed_date = None
    closer = None
    components = ['Library (Lib)']
    creation = <Date 2016-11-16.18:06:27.650>
    creator = 'wolma'
    dependencies = []
    files = ['45507']
    hgrepos = []
    issue_num = 28716
    keywords = ['patch']
    message_count = 13.0
    messages = ['280977', '280981', '280995', '280997', '280998', '280999', '305611', '310470', '313208', '313741', '313753', '313786', '349037']
    nosy_count = 9.0
    nosy_names = ['rhettinger', 'mark.dickinson', 'scoder', 'steven.daprano', 'serhiy.storchaka', 'jdemeyer', 'Eric.Wieser', 'wolma', 'josh.r']
    pr_nums = []
    priority = 'normal'
    resolution = None
    stage = None
    status = 'open'
    superseder = None
    type = 'behavior'
    url = 'https://bugs.python.org/issue28716'
    versions = ['Python 3.8']

    @wm75
    Copy link
    Mannequin Author

    wm75 mannequin commented Nov 16, 2016

    I've spent a bit of time lately trying to optimize the instantiation of Fractions. This is related to bpo-22464, but instead of focusing on constructing Fractions from ints, my attempts revolve around improving instantiation from strings, floats and decimals.
    I'm attaching a patch with all my changes for discussion, but here's an overview of what's in it:

    CHANGES TO INSTANTIATION FROM STRINGS:

    • isinstance checking for str is performed before the more expensive check for numbers.Rational (which has to go through abc)

    • instantiation from strings doesn't use a regex pattern anymore for parsing; this is faster in many cases (and never slower) than the current version

    • while reimplementing string parsing I added PEP-515 support (this is the only behavior change in the patch)

    combined this gives me the following performance changes for instantiation of Fractions from different arguments (profiled with 1,000,000 random inputs each):

    'x/y'-type of strings:
    ----------------------
    ncalls tottime percall cumtime percall filename:lineno(function)
    old:
    1000000 12.162 0.000 27.778 0.000 fractions.py:84(new)
    new:
    1000000 9.619 0.000 12.428 0.000 frc.py:68(new)

    scientific notation (e.g., '1.234E-7'):
    ---------------------------------------
    ncalls tottime percall cumtime percall filename:lineno(function)
    old:
    1000000 18.209 0.000 37.341 0.000 fractions.py:84(new)
    new:
    1000000 15.509 0.000 21.252 0.000 frc.py:68(new)

    integer strings (e.g. '123456'):
    --------------------------------
    ncalls tottime percall cumtime percall filename:lineno(function)
    old:
    1000000 11.272 0.000 26.201 0.000 fractions.py:84(new)
    new:
    1000000 9.347 0.000 12.425 0.000 frc.py:68(new)

    from other Fractions (to test effect on instantiation of numbers.Rational):
    ncalls tottime percall cumtime percall filename:lineno(function)
    old:
    1000000 4.708 0.000 10.093 0.000 fractions.py:84(new)
    new:
    1000000 4.835 0.000 10.572 0.000 frc.py:68(new)

    from int subclass (as another numbers.Rational):
    ncalls tottime percall cumtime percall filename:lineno(function)
    old:
    1000000 3.446 0.000 8.044 0.000 fractions.py:84(new)
    new:
    1000000 3.795 0.000 8.836 0.000 frc.py:68(new)

    SUMMARY of this part
    ====================

    + very significant speedup for instatiation from strings of different forms with (near) negligible effects on instantiation from numbers.Rational.

    + correct parsing of PEP-515-like number strings

    • possibly slower error bubbling with invalid input (untested)

    CHANGES TO INSTANTIATION FROM FLOAT AND DECIMAL:

    • no explicit check for float and decimal in standard constructor; instead, simply try to call as_integer_ratio as last resort (even after checking for numbers.Rational)

    • speed up alternate from_float and from_decimal constructor class methods by rearranging type checks and making use of _normalize flag

    • import decimal only on demand (when using from_decimal)

    Resulting performance changes:

    standard constructor with float:
    --------------------------------
    ncalls tottime percall cumtime percall filename:lineno(function)
    old:
    1000000 4.362 0.000 12.452 0.000 fractions.py:84(new)
    new:
    1000000 6.693 0.000 16.020 0.000 frc.py:68(new)

    from_float:
    -----------
    ncalls tottime percall cumtime percall filename:lineno(function)
    old:
    1000000 3.146 0.000 17.769 0.000 fractions.py:193(from_float)
    new:
    1000000 2.544 0.000 7.591 0.000 frc.py:205(from_float)

    standard constructor with decimal:
    --------------------------------
    ncalls tottime percall cumtime percall filename:lineno(function)
    old:
    1000000 4.672 0.000 20.795 0.000 fractions.py:84(new)
    new:
    1000000 7.097 0.000 24.526 0.000 frc.py:68(new)

    from_decimal:
    -------------
    ncalls tottime percall cumtime percall filename:lineno(function)
    old:
    1000000 5.054 0.000 34.473 0.000 fractions.py:207(from_decimal)
    new:
    1000000 2.942 0.000 16.013 0.000 frc.py:220(from_decimal)

    SUMMARY of this part:

    • standard constructor becomes a bit slower for floats and Decimals
      specialized class methods become a lot faster (for Decimal the benchmarks are based on _pydecimal - with the C implementation the percent differences would be even larger)
    • eliminates decimal from regularly imported modules
    • allows Fraction instantiation from duck-typing classes that provide as_integer_ratio

    I hope at least some of this is interesting.

    @wm75 wm75 mannequin added 3.7 (EOL) end of life stdlib Python modules in the Lib dir type-bug An unexpected behavior, bug, or error labels Nov 16, 2016
    @serhiy-storchaka
    Copy link
    Member

    Profiling give you only approximate results. In normal execution the effect of your changes can be opposite. Could you please provide benchmarks without using profiling?

    @wm75
    Copy link
    Mannequin Author

    wm75 mannequin commented Nov 16, 2016

    sure, I just happened to have the profiling available since I used it to optimize things. Here's similar microbenchmarks using perf:

    STRINGS
    =======

    $ python -m perf timeit -s "from fractions import Fraction" "Fraction('1.23456e-7')"
    .....................
    Median +- std dev: 17.0 us +- 0.3 us
    
    $ python -m perf timeit -s "from frc import Fraction" "Fraction('1.23456e-7')"
    .....................
    Median +- std dev: 8.95 us +- 0.16 us
    
    
    $ python -m perf timeit -s "from fractions import Fraction" "Fraction('234/567')"
    .....................
    Median +- std dev: 12.6 us +- 0.1 us
    
    $ python -m perf timeit -s "from frc import Fraction" "Fraction('234/567')"
    .....................
    Median +- std dev: 5.45 us +- 0.16 us
    
    
    $ python -m perf timeit -s "from fractions import Fraction" "Fraction('123456')"
    .....................
    Median +- std dev: 12.4 us +- 0.6 us
    
    $ python -m perf timeit -s "from frc import Fraction" "Fraction('123456')"
    .....................
    Median +- std dev: 5.77 us +- 0.12 us
    
    
    $ python -m perf timeit -s "from fractions import Fraction; f=Fraction(3/4)" "Fraction(f)"
    .....................
    Median +- std dev: 4.36 us +- 0.06 us
    
    $ python -m perf timeit -s "from frc import Fraction; f=Fraction(3/4)" "Fraction(f)"
    .....................
    Median +- std dev: 4.59 us +- 0.07 us
    
    
    $ python -m perf timeit -s "from fractions import Fraction" -s "class myInt(int): pass" -s "i=myInt(123456)" "Fraction(i)"
    .....................
    Median +- std dev: 4.04 us +- 0.07 us
    
    $ python -m perf timeit -s "from frc import Fraction" -s "class myInt(int): pass" -s "i=myInt(123456)" "Fraction(i)"
    .....................
    Median +- std dev: 4.27 us +- 0.06 us

    FLOATS
    ======

    $ python -m perf timeit -s "from fractions import Fraction" "Fraction(1.23456e-7)"
    .....................
    Median +- std dev: 6.30 us +- 0.28 us
    
    $ python -m perf timeit -s "from frc import Fraction" "Fraction(1.23456e-7)"
    .....................
    Median +- std dev: 8.64 us +- 0.13 us
    
    
    $ python -m perf timeit -s "from fractions import Fraction" "Fraction.from_float(1.23456e-7)"
    .....................
    Median +- std dev: 8.68 us +- 0.14 us
    
    $ python -m perf timeit -s "from frc import Fraction" "Fraction.from_float(1.23456e-7)"
    .....................
    Median +- std dev: 3.37 us +- 0.17 us

    DECIMALS (using C implementation this time)
    ===========================================

    $ python -m perf timeit -s "from fractions import Fraction; from decimal import Decimal; d=Decimal('123456')" "Fraction(d)".....................
    Median +- std dev: 6.95 us +- 0.21 us
    
    $ python -m perf timeit -s "from frc import Fraction; from decimal import Decimal; d=Decimal('123456')" "Fraction(d)"
    .....................
    Median +- std dev: 8.43 us +- 0.17 us
    
    
    $ python -m perf timeit -s "from fractions import Fraction; from decimal import Decimal; d=Decimal('123456')" "Fraction.from_decimal(d)"
    .....................
    Median +- std dev: 11.6 us +- 0.2 us
    
    $ python -m perf timeit -s "from frc import Fraction; from decimal import Decimal; d=Decimal('123456')" "Fraction.from_decimal(d)"
    .....................
    Median +- std dev: 4.14 us +- 0.28 us

    @MojoVampire
    Copy link
    Mannequin

    MojoVampire mannequin commented Nov 16, 2016

    Might it make sense to make instantiation from numbers.Rational duck typing based as well? Just try to get the numerator and denominator attributes, on AttributeError, skip it and move on. Unless there is some concern that a non-Rational type might have both attributes and not intend them to mean it's a Rational?

    @MojoVampire
    Copy link
    Mannequin

    MojoVampire mannequin commented Nov 16, 2016

    Similarly, type checking for int might be replaced with calling operator.index on the input and handling the TypeError; that way, anything that has declared itself logically int-like is handled without explicit type checking at all.

    @wm75
    Copy link
    Mannequin Author

    wm75 mannequin commented Nov 16, 2016

    No, I don't think the numeric tower ABC should be replaced by duck-typing. One of the very reasons the fractions module exists is that it showcases how to use the numeric tower. If you want a class to be picked up as a Rational it should be registered as such. Pretty much the same goes for integer-like things. The direct type check for ints only exists to speed up the most obvious case, but anything integer-like should be registered as a numbers.Integral and it will just work with fractions. Beautiful stuff!

    This is not the case for as_integer_ratio because that method is not defined in the numeric tower and this is why I think duck-typing could be of interest here (I'm not sure though whether its worth the somewhat decreased performance). My reasoning is that the standard constructor is anyway slower for floats and ints than the specialized classmethods for the two so people who really care about speed here (probably not too many) can just use the classmethods.

    @eric-wieser
    Copy link
    Mannequin

    eric-wieser mannequin commented Nov 5, 2017

    allows Fraction instantiation from duck-typing classes that provide as_integer_ratio

    This would allow the numpy np.floating types to take part in Fraction conversion as well, which would be great.

    As far as I can tell, Decimal already follows this duck-typing, so it would be a shame for other modules not to.

    Perhaps an num, den = operator.rational(x) is needed to unify this code across the places that coerce rational numbers.

    @scoder
    Copy link
    Contributor

    scoder commented Jan 23, 2018

    Not sure if it's relevant for this specific change, but here's a benchmark that you could use for Fractions: bpo-22458

    @scoder
    Copy link
    Contributor

    scoder commented Mar 4, 2018

    Just FYI and as further motivation, I reimplemented this dedicated parser for quicktions (in Cython, so the timings and speedups are not comparable).

    scoder/quicktions@cc034e0

    I was able to get another quite visible improvement by caching the values of "10 ** shift" for 0 <= shift < 58 in a tuple. Higher values are very unlikely in practice, and the memory size of a tuple with 58 values gives a nice multiple of the usual cache line size. (I originally stored 64 values in my commit but then cut it down later.)

    scoder/quicktions@c20add5

    I suspect that the difference won't be as big for the Python implementation, but it still seems worth a try.

    The overall speedup that I got, compared to the initial regex implementation, is 50-70%.

    [regex] $ python3.7 -m timeit -s 'from quicktions import Fraction as F' 'F("153456/789344")'
    200000 loops, best of 5: 1.19 usec per loop
    [native] $ python3.7 -m timeit -s 'from quicktions import Fraction as F' 'F("153456/789344")'
    500000 loops, best of 5: 593 nsec per loop

    [regex] $ python3.7 -m timeit -s 'from quicktions import Fraction as F' 'F("15.3456789E+4")'
    100000 loops, best of 5: 2.3 usec per loop
    [native] $ python3.7 -m timeit -s 'from quicktions import Fraction as F' 'F("15.3456789E+4")'
    500000 loops, best of 5: 667 nsec per loop

    It could be even higher if I additionally moved the int() integer parsing into Cython. Might try that at some point. But that's also not something that concerns the implementation in CPython.

    @scoder scoder added 3.8 only security fixes and removed 3.7 (EOL) end of life labels Mar 4, 2018
    @mdickinson
    Copy link
    Member

    [Eric Wieser]

    This would allow the numpy np.floating types to take part in Fraction conversion as well, which would be great.

    I'm confused: as far as I can tell, the NumPy floating-point types don't implement as_integer_ratio. (Except for np.float64, which subclasses float and so inherits is_integer_ratio from it.) Or are you suggesting that if they were to implement as_integer_ratio at some point in the future, then they'd become compatible with Fraction?

    @eric-wieser
    Copy link
    Mannequin

    eric-wieser mannequin commented Mar 13, 2018

    Are you suggesting that if they were to implement as_integer_ratio at some point in the future, then they'd become compatible with Fraction

    Yes, exactly. Conversely, there's little gain in implementing it until Fraction supports calling it.

    @rhettinger
    Copy link
    Contributor

    FYI, adding int.as_integer_ratio() is being taken care in a separate issue: https://bugs.python.org/issue33073 . I've set it aside for a beginning core-dev mentee to work on because it is simple and self-contained. Pretty much all the related work can be done here.

    @jdemeyer
    Copy link
    Contributor

    jdemeyer commented Aug 5, 2019

    See https://discuss.python.org/t/pep-3141-ratio-instead-of-numerator-denominator/2037/24?u=jdemeyer for a proposal to define a new dunder __ratio__ (instead of as_integer_ratio) for this.

    @ezio-melotti ezio-melotti transferred this issue from another repository Apr 10, 2022
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Labels
    3.8 only security fixes stdlib Python modules in the Lib dir type-bug An unexpected behavior, bug, or error
    Projects
    None yet
    Development

    No branches or pull requests

    5 participants