Re: pow (power) function

2006-03-17 Thread Paul Rubin
Russ [EMAIL PROTECTED] writes:
 I just did a little time test (which I should have done *before* my
 original post!), and 2.0**2 seems to be about twice as fast as
 pow(2.0,2). That seems consistent with your claim above... 
 I just did another little time test comparing 2.0**0.5 with sqrt(2.0).
 Surprisingly, 2.0**0.5 seems to take around a third less time.

I think the explanation is likely here:

Python 2.3.4 (#1, Feb  2 2005, 12:11:53) 
 import dis
 from math import sqrt
 def f(x): return x**.5
... 
 dis.dis(f)
  1   0 LOAD_FAST0 (x)
  3 LOAD_CONST   1 (0.5)
  6 BINARY_POWER
  7 RETURN_VALUE
  8 LOAD_CONST   0 (None)
 11 RETURN_VALUE

See, x**.5 does two immediate loads and an inline BINARY_POWER bytecode.

 def g(x): return sqrt(x)
... 
 dis.dis(g)
  1   0 LOAD_GLOBAL  0 (sqrt)
  3 LOAD_FAST0 (x)
  6 CALL_FUNCTION1
  9 RETURN_VALUE
 10 LOAD_CONST   0 (None)
 13 RETURN_VALUE

sqrt(x), on the other hand, does a lookup of 'sqrt' in the global
namespace, then does a Python function call, both of which likely
are almost as expensive as the C library pow(...) call.

If you do something like

def h(x, sqrt=sqrt):
   return sqrt(x)

you replace the LOAD_GLOBAL with a LOAD_FAST and that might give a
slight speedup:

 dis.dis(h)
  2   0 LOAD_FAST1 (sqrt)
  3 LOAD_FAST0 (x)
  6 CALL_FUNCTION1
  9 RETURN_VALUE
 10 LOAD_CONST   0 (None)
 13 RETURN_VALUE
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: pow (power) function

2006-03-17 Thread David M. Cooke
Russ [EMAIL PROTECTED] writes:

 Ben Cartwright wrote:
 Russ wrote:

  Does pow(x,2) simply square x, or does it first compute logarithms
  (as would be necessary if the exponent were not an integer)?


 The former, using binary exponentiation (quite fast), assuming x is an
 int or long.

 If x is a float, Python coerces the 2 to 2.0, and CPython's float_pow()
 function is called.  This function calls libm's pow(), which in turn
 uses logarithms.

 I just did a little time test (which I should have done *before* my
 original post!), and 2.0**2 seems to be about twice as fast as
 pow(2.0,2). That seems consistent with your claim above.

 I'm a bit surprised that pow() would use logarithms even if the
 exponent is an integer. I suppose that just checking for an integer
 exponent could blow away the gain that would be achieved by avoiding
 logarithms. On the other hand, I would think that using logarithms
 could introduce a tiny error (e.g., pow(2.0,2) = 3.96 - made
 up result) that wouldn't occur with multiplication.

It depends on the libm implementation of pow() whether logarithms are
used for integer exponents. I'm looking at glibc's (the libc used on
Linux) implementation for Intel processors, and it does optimize
integers. That routine is written in assembly language, btw.

  Does x**0.5 use the same algorithm as sqrt(x), or does it use some
  other (perhaps less efficient) algorithm based on logarithms?

 The latter, and that algorithm is libm's pow().  Except for a few
 special cases that Python handles, all floating point exponentation is
 left to libm.  Checking to see if the exponent is 0.5 is not one of
 those special cases.

 I just did another little time test comparing 2.0**0.5 with sqrt(2.0).
 Surprisingly, 2.0**0.5 seems to take around a third less time.

 None of these differences are really significant unless one is doing
 super-heavy-duty number crunching, of course, but I was just curious.
 Thanks for the information.

And if you are, you'd likely be doing it on more than one number, in
which case you'd probably want to use numpy. We've optimized x**n so
that it does handle n=0.5 and integers specially; it makes more sense
to do this for an array of numbers where you can do the special
manipulation of the exponent, and then apply that to all the numbers
in the array at once.

-- 
||\/|
/--\
|David M. Cooke
|cookedm(at)physics(dot)mcmaster(dot)ca
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: pow (power) function

2006-03-16 Thread Mike Ressler
On Wed, 2006-03-15 at 18:46 -0800, Ben Cartwright wrote:

 Anyway, if you want to see the int vs. float issue in action, try this:
 
from timeit import Timer
Timer('2**2').timeit()
   0.12681011582321844
Timer('2.0**2.0').timeit()
   0.6011743438121
Timer('2.0**2').timeit()
   0.36681835556112219
Timer('2**2.0').timeit()
   0.37949818370600497
 
 As you can see, the int version is much faster than the float version.

I have a counterexample. In the original timeit example, 111**111 was
used. When I run that 

 timeit.Timer(pow(111,111)).timeit()
10.968398094177246
 timeit.Timer(111**111).timeit()
10.04007887840271
 timeit.Timer(111.**111.).timeit()
0.36576294898986816

The pow and ** on integers take 10 seconds, but the float ** takes only
0.36 seconds. (The pow with floats takes ~ 0.7 seconds). Clearly
typecasting to floats is coming in here somewhere. (Python 2.4.1 on
Linux FC4.)

Mike


-- 
http://mail.python.org/mailman/listinfo/python-list


Re: pow (power) function

2006-03-16 Thread Ben Cartwright
Mike Ressler wrote:
  timeit.Timer(pow(111,111)).timeit()
 10.968398094177246
  timeit.Timer(111**111).timeit()
 10.04007887840271
  timeit.Timer(111.**111.).timeit()
 0.36576294898986816

 The pow and ** on integers take 10 seconds, but the float ** takes only
 0.36 seconds. (The pow with floats takes ~ 0.7 seconds). Clearly
 typecasting to floats is coming in here somewhere. (Python 2.4.1 on
 Linux FC4.)


No, there is not floating point math going on when the operands to **
are both int or long.  If there were, the following two commands would
have identical output:

   111**111
  107362012888474225801214565046695501959850723994224804804775911
  17562507619578334702249122617009363462146610374309298696786
  330067310159463303558666910091026017785587295539622142057315437
  069730229375357546494103400699864397711L
   int(111.0**111.0)
  107362012888474224720018046104893130890742038145054486592605938
  348914231670972887594279283213585412743799339280552157756096410
  839752020853099983680499334815422669184408961411319810030383904
  886446681757296875373689157536249282560L

The first result is accurate.  Work it out by hand if you don't believe
me. ;-)  The second suffers from inaccuracies due to floating point's
limited precision.

Of course, getting exact results with huge numbers isn't cheap,
computationally.  Because there's no type in C to represent arbitrarily
huge numbers, Python implements its own, called long.  There's a fair
amount of memory allocation, bit shifting, and other monkey business
going on behind the scenes in longobject.c.

Whenever possible, Python uses C's built-in signed long int type (known
simply as int on the Python side, and implemented in intobject.c).
On my platform, C's signed long int is 32 bits, so values range from
-2147483648 to 2147483647.  I.e., -(2**31) to (2**31)-1.

As long as your exponentiation result is in this range, Python uses
int_pow().  When it overflows, long_pow() takes over.  Both functions
use the binary exponentiation algorithm, but long_pow() is naturally
slower:

   from timeit import Timer
   Timer('2**28').timeit()
  0.24572032043829495
   Timer('2**29').timeit()
  0.25511642791934719
   Timer('2**30').timeit()
  0.27746782979170348
   Timer('2**31').timeit()  # overflow: 2**31  2147483647
  2.8205724462504804
   Timer('2**32').timeit()
  2.2251812151589547
   Timer('2**33').timeit()
  2.406713399635

Floating point is a whole 'nother ball game:

   Timer('2.0**30.0').timeit()
  0.33266301963840306
   Timer('2.0**31.0').timeit()  # no threshold here!
  0.33437446769630697

--Ben

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: pow (power) function

2006-03-16 Thread Terry Reedy

Mike Ressler [EMAIL PROTECTED] wrote in message 
news:[EMAIL PROTECTED]
 I have a counterexample. In the original timeit example, 111**111 was
 used. When I run that

 timeit.Timer(pow(111,111)).timeit()
 10.968398094177246
 timeit.Timer(111**111).timeit()
 10.04007887840271
 timeit.Timer(111.**111.).timeit()
 0.36576294898986816

 The pow and ** on integers take 10 seconds, but the float ** takes only
 0.36 seconds. (The pow with floats takes ~ 0.7 seconds). Clearly
 typecasting to floats is coming in here somewhere. (Python 2.4.1 on
 Linux FC4.)

For floats, f**g == exp(log(f**g)) == exp(g*log(f)) (with maybe further 
algebraic manipulation, depending on the implementation).  The time for 
this should only be mildly dependent on the magnitudes of f and g.

The time for i**j, on the other hand, grows at least as fast as log(j).  So 
I should expect comparisons to depend on magnitudes, as you discovered.

Terry Jan Reedy




-- 
http://mail.python.org/mailman/listinfo/python-list


pow (power) function

2006-03-15 Thread Russ
I have a couple of questions for the number crunchers out there:

Does pow(x,2) simply square x, or does it first compute logarithms
(as would be necessary if the exponent were not an integer)?

Does x**0.5 use the same algorithm as sqrt(x), or does it use some
other (perhaps less efficient) algorithm based on logarithms?

Thanks,
Russ

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: pow (power) function

2006-03-15 Thread Schüle Daniel
Russ wrote:
 I have a couple of questions for the number crunchers out there:
 
 Does pow(x,2) simply square x, or does it first compute logarithms
 (as would be necessary if the exponent were not an integer)?
 
 Does x**0.5 use the same algorithm as sqrt(x), or does it use some
 other (perhaps less efficient) algorithm based on logarithms?

you can try and timeit

  111**111
10736201288847422580121456504669550195985072399422480480477591117562507619578334702249122617009363462146610374309298696786330067310159463303558666910091026017785587295539622142057315437069730229375357546494103400699864397711L
  timeit.Timer(pow(111,111)).timeit()
40.888447046279907
  timeit.Timer(111**111).timeit()
39.732122898101807
  timeit.Timer(111**0.5).timeit()
2.0990891456604004
  timeit.Timer(pow(111,0.5)).timeit()
4.1776390075683594
  timeit.Timer(111**0.3).timeit()
2.3824679851531982
  timeit.Timer(pow(111,0.3)).timeit()
4.2945041656494141

interesting result
seems that ** computates faster

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: pow (power) function

2006-03-15 Thread sam
I not shure which algorithm,but I am assumeing that all Python does,is
to call the underlying C pow() function.

Sam

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: pow (power) function

2006-03-15 Thread Paul Rubin
Schüle Daniel [EMAIL PROTECTED] writes:
   timeit.Timer(111**0.3).timeit()
 2.3824679851531982
   timeit.Timer(pow(111,0.3)).timeit()
 4.2945041656494141
 
 interesting result
 seems that ** computates faster

Maybe 111**0.3 parses faster than pow(111,0.3), if timeit uses eval.
Also, pow() may incur more subroutine call overhead--better check
the bytecode for both versions.
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: pow (power) function

2006-03-15 Thread Russ
Ben Cartwright wrote:
 Russ wrote:

  Does pow(x,2) simply square x, or does it first compute logarithms
  (as would be necessary if the exponent were not an integer)?


 The former, using binary exponentiation (quite fast), assuming x is an
 int or long.

 If x is a float, Python coerces the 2 to 2.0, and CPython's float_pow()
 function is called.  This function calls libm's pow(), which in turn
 uses logarithms.

I just did a little time test (which I should have done *before* my
original post!), and 2.0**2 seems to be about twice as fast as
pow(2.0,2). That seems consistent with your claim above.

I'm a bit surprised that pow() would use logarithms even if the
exponent is an integer. I suppose that just checking for an integer
exponent could blow away the gain that would be achieved by avoiding
logarithms. On the other hand, I would think that using logarithms
could introduce a tiny error (e.g., pow(2.0,2) = 3.96 - made
up result) that wouldn't occur with multiplication.


  Does x**0.5 use the same algorithm as sqrt(x), or does it use some
  other (perhaps less efficient) algorithm based on logarithms?

 The latter, and that algorithm is libm's pow().  Except for a few
 special cases that Python handles, all floating point exponentation is
 left to libm.  Checking to see if the exponent is 0.5 is not one of
 those special cases.

I just did another little time test comparing 2.0**0.5 with sqrt(2.0).
Surprisingly, 2.0**0.5 seems to take around a third less time.

None of these differences are really significant unless one is doing
super-heavy-duty number crunching, of course, but I was just curious.
Thanks for the information.

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: pow (power) function

2006-03-15 Thread Ben Cartwright
Russ wrote:
 Ben Cartwright wrote:
  Russ wrote:

   Does pow(x,2) simply square x, or does it first compute logarithms
   (as would be necessary if the exponent were not an integer)?
 
 
  The former, using binary exponentiation (quite fast), assuming x is an
  int or long.
 
  If x is a float, Python coerces the 2 to 2.0, and CPython's float_pow()
  function is called.  This function calls libm's pow(), which in turn
  uses logarithms.

 I just did a little time test (which I should have done *before* my
 original post!), and 2.0**2 seems to be about twice as fast as
 pow(2.0,2). That seems consistent with your claim above.


Actually, the fact that x**y is faster than pow(x, y) has nothing do to
with the int vs. float issue.  It's actually due to do the way Python
parses operators versus builtin functions.  Paul Rubin hit the nail on
the head when he suggested you check the bytecode:

   import dis
   dis.dis(lambda x, y: x**y)
1   0 LOAD_FAST0 (x)
3 LOAD_FAST1 (y)
6 BINARY_POWER
7 RETURN_VALUE
   dis.dis(lambda x, y: pow(x,y))
1   0 LOAD_GLOBAL  0 (pow)
3 LOAD_FAST0 (x)
6 LOAD_FAST1 (y)
9 CALL_FUNCTION2
   12 RETURN_VALUE

LOAD_GLOBAL + CALL_FUNCTION is more expensive than LOAD_FAST,
especially when you're doing it a million times (which, coincidentally,
timeit does).

Anyway, if you want to see the int vs. float issue in action, try this:

   from timeit import Timer
   Timer('2**2').timeit()
  0.12681011582321844
   Timer('2.0**2.0').timeit()
  0.6011743438121
   Timer('2.0**2').timeit()
  0.36681835556112219
   Timer('2**2.0').timeit()
  0.37949818370600497

As you can see, the int version is much faster than the float version.
The last two cases, which also use the float version, have an
additional performance hit due to type coercion.  The relative speed
differences are similar when using pow():

   Timer('pow(2, 2)').timeit()
  0.33000968869157532
   Timer('pow(2.0, 2.0)').timeit()
  0.50356362184709269
   Timer('pow(2.0, 2)').timeit()
  0.55112938185857274
   Timer('pow(2, 2.0)').timeit()
  0.55198819605811877


 I'm a bit surprised that pow() would use logarithms even if the
 exponent is an integer. I suppose that just checking for an integer
 exponent could blow away the gain that would be achieved by avoiding
 logarithms.  On the other hand, I would think that using logarithms
 could introduce a tiny error (e.g., pow(2.0,2) = 3.96 - made
 up result) that wouldn't occur with multiplication.


These are good questions to ask an expert in floating point arithmetic.
 Which I'm not. :-)


   Does x**0.5 use the same algorithm as sqrt(x), or does it use some
   other (perhaps less efficient) algorithm based on logarithms?
 
  The latter, and that algorithm is libm's pow().  Except for a few
  special cases that Python handles, all floating point exponentation is
  left to libm.  Checking to see if the exponent is 0.5 is not one of
  those special cases.

 I just did another little time test comparing 2.0**0.5 with sqrt(2.0).
 Surprisingly, 2.0**0.5 seems to take around a third less time.


Again, this is because of the operator vs. function lookup issue.
pow(2.0, 0.5) vs. sqrt(2.0) is a better comparison:

   from timeit import Timer
   Timer('pow(2.0, 0.5)').timeit()
  0.51701437102815362
   Timer('sqrt(2.0)', 'from math import sqrt').timeit()
  0.46649096722239847


 None of these differences are really significant unless one is doing
 super-heavy-duty number crunching, of course, but I was just curious.
 Thanks for the information.


Welcome. :-)

--Ben

-- 
http://mail.python.org/mailman/listinfo/python-list