| 73 | public: |
| 74 | const std::string unit; |
| 75 | Benchmark (const std::string& name, int isa, const std::string& unit, bool higher_is_better, size_t max_attempts) |
| 76 | : Test(name,isa,BENCHMARK,false), unit(unit), numThreads(getNumberOfLogicalThreads()), higher_is_better(higher_is_better), max_attempts(max_attempts) {} |
| 77 | |
| 78 | virtual size_t setNumPrimitives(size_t N) { return 0; } |
| 79 | virtual void setNumThreads(size_t N) |
nothing calls this directly
no test coverage detected