-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathrun-all.sh
More file actions
executable file
·23 lines (18 loc) · 853 Bytes
/
run-all.sh
File metadata and controls
executable file
·23 lines (18 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /bin/bash
# fannkuch works for Java and Clojure, but it is one of the slowest
# Clojure programs, partly because it has received less optimization
# attention because it is now considered obsolete on the Computer
# Language Benchmarks Game web site. Leave it out unless someone
# really wants it by editing this file.
# pidigits works for Clojure version that does not use the GMP
# library, but the Java and C versions requires the GMP library.
# Leave it out by default.
# chameneosredux and threadring have not yet been implemented in
# Clojure.
#for j in binarytrees fannkuch fannkuchredux fasta hello knucleotide mandelbrot meteor nbody pidigits regexdna revcomp spectralnorm
for j in binarytrees fannkuchredux fasta hello knucleotide mandelbrot nbody pidigits regexdna revcomp spectralnorm
do
cd $j
./batch.sh "$@"
cd ..
done