summaryrefslogtreecommitdiff
path: root/benchmarks/creating.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2013-02-28 18:46:35 -0700
committerCharles Harris <charlesr.harris@gmail.com>2013-02-28 18:46:35 -0700
commitd1e6fc3b81bc0557d74771cfffa04af2c62012f7 (patch)
treef3a82f46b98cc82bd4142b1bc71f7f9f8f4bac0c /benchmarks/creating.py
parent0934653e151969f6912c911b5113306bd5f450f1 (diff)
downloadnumpy-d1e6fc3b81bc0557d74771cfffa04af2c62012f7.tar.gz
REM: Remove benchmarks files.
The files are very basic, old benchmarks testing numpy against numeric and numarray. The competitors are almost defunct and, while benchmarks are awesome, we really need a more polished and complete framework that runs against the current competition. I think the early results from these benchmarks were posted, maybe even presented, and could be found in a search. Closes #3088 ;) So old a tuple parameter was used.
Diffstat (limited to 'benchmarks/creating.py')
-rw-r--r--benchmarks/creating.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/benchmarks/creating.py b/benchmarks/creating.py
deleted file mode 100644
index 6f8dc0217..000000000
--- a/benchmarks/creating.py
+++ /dev/null
@@ -1,14 +0,0 @@
-from benchmark import Benchmark
-
-modules = ['numpy','Numeric','numarray']
-
-N = [10,10]
-b = Benchmark(modules,
- title='Creating %s zeros.' % N,
- runs=3,reps=10000)
-
-b['numpy'] = ('a=np.zeros(shape,type)', 'shape=%s;type=float' % N)
-b['Numeric'] = ('a=np.zeros(shape,type)', 'shape=%s;type=np.Float' % N)
-b['numarray'] = ('a=np.zeros(shape,type)', "shape=%s;type=np.Float" % N)
-
-b.run()