442491163698d09d6e2ad2c3289af05ead46c128
[IRC.git] / Robust / src / Benchmarks / Prefetch / Moldyn / javasingle / JGFMolDynBenchSizeC.java
1 /**************************************************************************
2  *                                                                         *
3  *         Java Grande Forum Benchmark Suite - Thread Version 1.0          *
4  *                                                                         *
5  *                            produced by                                  *
6  *                                                                         *
7  *                  Java Grande Benchmarking Project                       *
8  *                                                                         *
9  *                                at                                       *
10  *                                                                         *
11  *                Edinburgh Parallel Computing Centre                      *
12  *                                                                         * 
13  *                email: epcc-javagrande@epcc.ed.ac.uk                     *
14  *                                                                         *
15  *                                                                         *
16  *      This version copyright (c) The University of Edinburgh, 2001.      *
17  *                         All rights reserved.                            *
18  *                                                                         *
19  **************************************************************************/
20 public class JGFMolDynBenchSizeC { 
21
22     public static void main(String argv[]){
23     int nthreads;
24     if(argv.length != 0 ) {
25       nthreads = Integer.parseInt(argv[0]);
26     } else {
27       System.printString("The no of threads has not been specified, defaulting to 1\n");
28       System.printString("  " + "\n");
29       nthreads = 1;
30     }
31
32     JGFInstrumentor instr = new JGFInstrumentor();
33     JGFInstrumentor.printHeader(3,0,nthreads);
34
35     JGFMolDynBench mold;
36     mold = new JGFMolDynBench(nthreads); 
37     int size = 2;
38     JGFInstrumentor.addTimer("Section3:MolDyn:Total", "Solutions",size, instr.timers);
39     JGFInstrumentor.addTimer("Section3:MolDyn:Run", "Interactions",size, instr.timers);
40
41     mold.JGFsetsize(size); 
42
43     JGFInstrumentor.startTimer("Section3:MolDyn:Total", instr.timers);
44
45     JGFMolDynBench tmp;
46     mold.JGFinitialise(); 
47     JGFMolDynBench.JGFapplication(mold); 
48
49     /* Validate data */
50     /*
51     double[] refval = new double[2];
52     refval[0] = 1731.4306625334357;
53     refval[1] = 7397.392307839352;
54     double dval;
55     dval = mold.ek[0].d;
56     double dev = Math.fabs(dval - refval[size]);
57     long l = (long) refval[size] *1000000;
58     long r = (long) dval * 1000000;
59     if (l != r ){
60       System.printString("Validation failed\n");
61       System.printString("Kinetic Energy = " + (long)dval + "  " + (long)dev + "  " + size + "\n");
62     }
63
64     JGFInstrumentor.stopTimer("Section3:MolDyn:Total", instr.timers);
65     double interactions;
66     interactions = mold.interactions;
67
68     JGFInstrumentor.addOpsToTimer("Section3:MolDyn:Run", (double) interactions, instr.timers);
69     JGFInstrumentor.addOpsToTimer("Section3:MolDyn:Total", 1, instr.timers);
70
71     JGFInstrumentor.printTimer("Section3:MolDyn:Run", instr.timers); 
72     JGFInstrumentor.printTimer("Section3:MolDyn:Total", instr.timers); 
73     */
74     System.printString("Finished\n");
75   }
76 }
77