| 26 | using namespace clMath; |
| 27 | |
| 28 | PerformanceRecorder::PerformanceRecorder() |
| 29 | { |
| 30 | unsigned int size = static_cast<unsigned int>(BLAS_FUNCTION_END); |
| 31 | |
| 32 | records_ = new PerfRecord[size]; |
| 33 | memset(records_, 0, sizeof(PerfRecord) * size); |
| 34 | } |
| 35 | |
| 36 | PerformanceRecorder::~PerformanceRecorder() |
| 37 | { |
nothing calls this directly
no outgoing calls
no test coverage detected