2012-03-21 14:25:23 -03:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
#
|
|
|
|
# Copyright (C) 2001-2012 Python Software Foundation. All Rights Reserved.
|
|
|
|
# Modified and extended by Stefan Krah.
|
|
|
|
#
|
|
|
|
|
|
|
|
# Usage: ../../../python bench.py
|
|
|
|
|
|
|
|
|
|
|
|
import time
|
|
|
|
from math import log, ceil
|
2012-09-25 11:23:47 -03:00
|
|
|
try:
|
2012-09-25 11:25:41 -03:00
|
|
|
from test.support import import_fresh_module
|
2012-09-25 11:23:47 -03:00
|
|
|
except ImportError:
|
2012-09-25 11:25:41 -03:00
|
|
|
from test.test_support import import_fresh_module
|
2012-03-21 14:25:23 -03:00
|
|
|
|
|
|
|
C = import_fresh_module('decimal', fresh=['_decimal'])
|
|
|
|
P = import_fresh_module('decimal', blocked=['_decimal'])
|
|
|
|
|
2012-09-30 04:24:41 -03:00
|
|
|
#
|
|
|
|
# NOTE: This is the pi function from the decimal documentation, modified
|
|
|
|
# for benchmarking purposes. Since floats do not have a context, the higher
|
|
|
|
# intermediate precision from the original is NOT used, so the modified
|
|
|
|
# algorithm only gives an approximation to the correctly rounded result.
|
|
|
|
# For serious use, refer to the documentation or the appropriate literature.
|
|
|
|
#
|
2012-06-24 09:10:49 -03:00
|
|
|
def pi_float():
|
2012-03-21 14:25:23 -03:00
|
|
|
"""native float"""
|
|
|
|
lasts, t, s, n, na, d, da = 0, 3.0, 3, 1, 0, 0, 24
|
|
|
|
while s != lasts:
|
|
|
|
lasts = s
|
|
|
|
n, na = n+na, na+8
|
|
|
|
d, da = d+da, da+32
|
|
|
|
t = (t * n) / d
|
|
|
|
s += t
|
|
|
|
return s
|
|
|
|
|
2012-06-24 09:10:49 -03:00
|
|
|
def pi_cdecimal():
|
2012-03-21 14:25:23 -03:00
|
|
|
"""cdecimal"""
|
|
|
|
D = C.Decimal
|
|
|
|
lasts, t, s, n, na, d, da = D(0), D(3), D(3), D(1), D(0), D(0), D(24)
|
|
|
|
while s != lasts:
|
|
|
|
lasts = s
|
|
|
|
n, na = n+na, na+8
|
|
|
|
d, da = d+da, da+32
|
|
|
|
t = (t * n) / d
|
|
|
|
s += t
|
|
|
|
return s
|
|
|
|
|
2012-06-24 09:10:49 -03:00
|
|
|
def pi_decimal():
|
2012-03-21 14:25:23 -03:00
|
|
|
"""decimal"""
|
|
|
|
D = P.Decimal
|
|
|
|
lasts, t, s, n, na, d, da = D(0), D(3), D(3), D(1), D(0), D(0), D(24)
|
|
|
|
while s != lasts:
|
|
|
|
lasts = s
|
|
|
|
n, na = n+na, na+8
|
|
|
|
d, da = d+da, da+32
|
|
|
|
t = (t * n) / d
|
|
|
|
s += t
|
|
|
|
return s
|
|
|
|
|
|
|
|
def factorial(n, m):
|
|
|
|
if (n > m):
|
|
|
|
return factorial(m, n)
|
|
|
|
elif m == 0:
|
|
|
|
return 1
|
|
|
|
elif n == m:
|
|
|
|
return n
|
|
|
|
else:
|
|
|
|
return factorial(n, (n+m)//2) * factorial((n+m)//2 + 1, m)
|
|
|
|
|
|
|
|
|
|
|
|
print("\n# ======================================================================")
|
|
|
|
print("# Calculating pi, 10000 iterations")
|
|
|
|
print("# ======================================================================\n")
|
|
|
|
|
2012-09-25 12:07:55 -03:00
|
|
|
to_benchmark = [pi_float, pi_decimal]
|
|
|
|
if C is not None:
|
|
|
|
to_benchmark.insert(1, pi_cdecimal)
|
|
|
|
|
2012-03-21 14:25:23 -03:00
|
|
|
for prec in [9, 19]:
|
|
|
|
print("\nPrecision: %d decimal digits\n" % prec)
|
2012-09-25 11:23:47 -03:00
|
|
|
for func in to_benchmark:
|
2012-03-21 14:25:23 -03:00
|
|
|
start = time.time()
|
2012-09-25 11:23:47 -03:00
|
|
|
if C is not None:
|
2012-09-25 11:26:15 -03:00
|
|
|
C.getcontext().prec = prec
|
2012-06-24 09:10:49 -03:00
|
|
|
P.getcontext().prec = prec
|
2012-03-21 14:25:23 -03:00
|
|
|
for i in range(10000):
|
2012-06-24 09:10:49 -03:00
|
|
|
x = func()
|
2012-03-21 14:25:23 -03:00
|
|
|
print("%s:" % func.__name__.replace("pi_", ""))
|
|
|
|
print("result: %s" % str(x))
|
|
|
|
print("time: %fs\n" % (time.time()-start))
|
|
|
|
|
|
|
|
|
|
|
|
print("\n# ======================================================================")
|
|
|
|
print("# Factorial")
|
|
|
|
print("# ======================================================================\n")
|
|
|
|
|
2012-09-25 11:23:47 -03:00
|
|
|
if C is not None:
|
2012-09-25 11:25:41 -03:00
|
|
|
c = C.getcontext()
|
|
|
|
c.prec = C.MAX_PREC
|
|
|
|
c.Emax = C.MAX_EMAX
|
|
|
|
c.Emin = C.MIN_EMIN
|
2012-03-21 14:25:23 -03:00
|
|
|
|
|
|
|
for n in [100000, 1000000]:
|
|
|
|
|
|
|
|
print("n = %d\n" % n)
|
|
|
|
|
2012-09-25 11:23:47 -03:00
|
|
|
if C is not None:
|
2012-09-25 11:25:41 -03:00
|
|
|
# C version of decimal
|
|
|
|
start_calc = time.time()
|
|
|
|
x = factorial(C.Decimal(n), 0)
|
|
|
|
end_calc = time.time()
|
|
|
|
start_conv = time.time()
|
|
|
|
sx = str(x)
|
|
|
|
end_conv = time.time()
|
|
|
|
print("cdecimal:")
|
|
|
|
print("calculation time: %fs" % (end_calc-start_calc))
|
|
|
|
print("conversion time: %fs\n" % (end_conv-start_conv))
|
2012-03-21 14:25:23 -03:00
|
|
|
|
|
|
|
# Python integers
|
|
|
|
start_calc = time.time()
|
|
|
|
y = factorial(n, 0)
|
|
|
|
end_calc = time.time()
|
|
|
|
start_conv = time.time()
|
|
|
|
sy = str(y)
|
|
|
|
end_conv = time.time()
|
|
|
|
|
|
|
|
print("int:")
|
|
|
|
print("calculation time: %fs" % (end_calc-start_calc))
|
|
|
|
print("conversion time: %fs\n\n" % (end_conv-start_conv))
|
|
|
|
|
2012-09-25 11:23:47 -03:00
|
|
|
if C is not None:
|
2012-09-25 11:25:41 -03:00
|
|
|
assert(sx == sy)
|