diff options
author | edschofield <edschofield@localhost> | 2006-01-05 00:27:06 +0000 |
---|---|---|
committer | edschofield <edschofield@localhost> | 2006-01-05 00:27:06 +0000 |
commit | 605f8a5533071a0939fb5cbbc94dafede8006074 (patch) | |
tree | 9b26432c299b0d3d80a4cf9c3d399d89a8c0f41d /benchmarks | |
parent | 6a0653c0eabcc39a1a45565fc9dd21857c465aba (diff) | |
download | python-numpy-605f8a5533071a0939fb5cbbc94dafede8006074.tar.gz python-numpy-605f8a5533071a0939fb5cbbc94dafede8006074.tar.bz2 python-numpy-605f8a5533071a0939fb5cbbc94dafede8006074.zip |
More documentation updates
Diffstat (limited to 'benchmarks')
-rw-r--r-- | benchmarks/sorting.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/benchmarks/sorting.py b/benchmarks/sorting.py index e822d5547..d018e19d4 100644 --- a/benchmarks/sorting.py +++ b/benchmarks/sorting.py @@ -7,7 +7,7 @@ t3 = timeit.Timer('a=empty(shape=%d);sort(a)'%N,'from Numeric import empty,sort' print "1-D length = ", N print "Numarray: ", t1.repeat(3,100) -print "SciPy: ", t2.repeat(3,100) +print "NumPy: ", t2.repeat(3,100) print "Numeric: ", t3.repeat(3,100) N1,N2 = 100,100 @@ -17,7 +17,7 @@ t3 = timeit.Timer('a=empty(shape=(%d,%d));sort(a)'%(N1,N2),'from Numeric import print "2-D shape = (%d,%d), last-axis" % (N1,N2) print "Numarray: ", t1.repeat(3,100) -print "SciPy: ", t2.repeat(3,100) +print "NumPy: ", t2.repeat(3,100) print "Numeric: ", t3.repeat(3,100) N1,N2 = 100,100 @@ -27,7 +27,7 @@ t3 = timeit.Timer('a=empty(shape=(%d,%d));sort(a,0)'%(N1,N2),'from Numeric impor print "2-D shape = (%d,%d), first-axis" % (N1,N2) print "Numarray: ", t1.repeat(3,100) -print "SciPy: ", t2.repeat(3,100) +print "NumPy: ", t2.repeat(3,100) print "Numeric: ", t3.repeat(3,100) |