Go to the documentation of this file.00001
00002 #include "papi_test.h"
00003
00004 int main(int argc, char **argv)
00005 {
00006 int c, i = NUM_FLOPS;
00007 if (argc > 1) {
00008 c = atoi(argv[1]);
00009 if (c >= 0) {
00010 i = c;
00011 }
00012 }
00013 do_flops(i);
00014 exit(0);
00015 }