New benchmark
[IRC.git] / Robust / src / Benchmarks / Prefetch / Crypt / dsm / JGFCryptBenchSizeA.java
1 public class JGFCryptBenchSizeA{
2     public static void main(String argv[]){
3         int nthreads;
4         if(argv.length != 0 ) {
5             nthreads = Integer.parseInt(argv[0]);
6         } else {
7             System.printString("The no of threads has not been specified, defaulting to 1");
8             System.printString("  ");
9             nthreads = 1;
10         }
11
12         JGFInstrumentor instr = new JGFInstrumentor();
13         instr.printHeader(2,0,nthreads);
14
15         JGFCryptBench cb = new JGFCryptBench(nthreads, instr);
16         cb.JGFrun(0);
17
18     }
19 }
20