Navigation Menu

Skip to content

Commit

Permalink
a quick sh script to run the benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
Whiteknight committed Feb 7, 2010
1 parent 0521a05 commit 6f75ad9
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions benchmarks.sh
@@ -0,0 +1,17 @@
#!/bin/sh

echo "Queue benchmarks:"
for i in benchmarks/*queue.pir; do
parrot $i
done

echo "Stack benchmarks:"
for i in benchmarks/*stack*.pir; do
parrot $i
done

echo "Array benchmarks:"
for i in benchmarks/*array.pir; do
parrot $i
done

0 comments on commit 6f75ad9

Please sign in to comment.