Message259942
| Author |
yselivanov |
| Recipients |
mark.dickinson, pitrou, serhiy.storchaka, vstinner, yselivanov |
| Date |
2016-02-09.16:03:37 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1455033818.34.0.977265262501.issue26289@psf.upfronthosting.co.za> |
| In-reply-to |
|
| Content |
> Is it worth to move the optimization inside l_divmod? Will this speed up or slow down other operations that use l_divmod?
Attaching a new patch -- fast_divmod.patch
It combines patches for this issue and issue #26315.
Individual timeit benchmarks work as fast, but ** op becomes faster:
-m timeit -s "x=223" "x**2;x**-2;x**2;x**-3;x**3;x**-3;x**4.5;x**-4.5"
with patch: 1.2usec
without: 1.5usec |
|