| 5717 | : VerifyApplication::Benchmark(name,isa,"1/s",true,10) {} |
| 5718 | |
| 5719 | float benchmark(VerifyApplication* state) |
| 5720 | { |
| 5721 | double t0 = getSeconds(); |
| 5722 | for (volatile size_t i=0; i<10000000; i = i + 1); |
| 5723 | double t1 = getSeconds(); |
| 5724 | return 1.0f/float(t1-t0); |
| 5725 | } |
| 5726 | }; |
| 5727 | |
| 5728 | struct ParallelIntersectBenchmark : public VerifyApplication::Benchmark |
nothing calls this directly
no test coverage detected