Skip to content

Commit

Permalink
Make sorting benchmarks all sort integers
Browse files Browse the repository at this point in the history
  • Loading branch information
charris committed Apr 7, 2007
1 parent ada65fd commit a083ce5
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions benchmarks/sorting.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,21 @@

N = 10000
b.title = 'Sorting %d elements' % N
b['numarray'] = ('a=N.array(None,shape=%d);a.sort()'%N,'')
b['numpy'] = ('a=N.empty(shape=%d);a.sort()'%N,'')
b['Numeric'] = ('a=N.empty(shape=%d);N.sort(a)'%N,'')
b['numarray'] = ('a=N.array(None,shape=%d,typecode="i");a.sort()'%N,'')
b['numpy'] = ('a=N.empty(shape=%d, dtype="i");a.sort()'%N,'')
b['Numeric'] = ('a=N.empty(shape=%d, typecode="i");N.sort(a)'%N,'')
b.run()

N1,N2 = 100,100
b.title = 'Sorting (%d,%d) elements, last axis' % (N1,N2)
b['numarray'] = ('a=N.array(None,shape=(%d,%d));a.sort()'%(N1,N2),'')
b['numpy'] = ('a=N.empty(shape=(%d,%d));a.sort()'%(N1,N2),'')
b['Numeric'] = ('a=N.empty(shape=(%d,%d));N.sort(a)'%(N1,N2),'')
b['numarray'] = ('a=N.array(None,shape=(%d,%d),typecode="i");a.sort()'%(N1,N2),'')
b['numpy'] = ('a=N.empty(shape=(%d,%d), dtype="i");a.sort()'%(N1,N2),'')
b['Numeric'] = ('a=N.empty(shape=(%d,%d),typecode="i");N.sort(a)'%(N1,N2),'')
b.run()

N1,N2 = 100,100
b.title = 'Sorting (%d,%d) elements, first axis' % (N1,N2)
b['numarray'] = ('a=N.array(None,shape=(%d,%d));a.sort(0)'%(N1,N2),'')
b['Numeric'] = ('a=N.empty(shape=(%d,%d));N.sort(a,0)'%(N1,N2),'')
b['numpy'] = ('a=N.empty(shape=(%d,%d));N.sort(a,0)'%(N1,N2),'')
b['numarray'] = ('a=N.array(None,shape=(%d,%d), typecode="i");a.sort(0)'%(N1,N2),'')
b['numpy'] = ('a=N.empty(shape=(%d,%d),dtype="i");N.sort(a,0)'%(N1,N2),'')
b['Numeric'] = ('a=N.empty(shape=(%d,%d),typecode="i");N.sort(a,0)'%(N1,N2),'')
b.run()

0 comments on commit a083ce5

Please sign in to comment.