| 191 | } |
| 192 | |
| 193 | template <typename ElemType> nano_time_t |
| 194 | Nrm2PerformanceTest<ElemType>::etalonPerfSingle(void) |
| 195 | { |
| 196 | nano_time_t time = 0; |
| 197 | |
| 198 | #ifdef PERF_TEST_WITH_ACML |
| 199 | |
| 200 | time = getCurrentTime(); |
| 201 | clMath::blas::nrm2(params_.N, blasX_, params_.offBX, params_.incx); |
| 202 | time = getCurrentTime() - time; |
| 203 | |
| 204 | #endif // PERF_TEST_WITH_ACML |
| 205 | |
| 206 | return time; |
| 207 | } |
| 208 | |
| 209 | |
| 210 | template <typename ElemType> nano_time_t |
nothing calls this directly
no test coverage detected