SomeNet
/
public repos
/
pub
/
astra
/
parallel.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
now with fileread
[pub/astra/parallel.git]
/
openmp
/
prefix
/
runAll.sh
1
#!/bin/bash
2
3
touch numlist.bin
4
5
ALGORITHMS="seq datapar recurse hillis"
6
RUNLIST="10 100000 1000000000 5000000000"
7
8
ulimit -s unlimited
9
for prog in $ALGORITHMS; do
10
echo $prog
11
for i in $RUNLIST; do
12
build/$prog -n $i
13
done
14
done
15
16
echo "done - hit ENTER to exit"
17
read