| 229 | } |
| 230 | |
| 231 | template <typename ElemType> nano_time_t |
| 232 | RotPerformanceTest<ElemType>::etalonPerfSingle(void) |
| 233 | { |
| 234 | nano_time_t time = 0; |
| 235 | |
| 236 | #ifdef PERF_TEST_WITH_ACML |
| 237 | |
| 238 | time = getCurrentTime(); |
| 239 | clMath::blas::rot(params_.N, back_X_, params_.offa, params_.incx, back_Y_, params_.offb, params_.incy, |
| 240 | alpha, beta); |
| 241 | time = getCurrentTime() - time; |
| 242 | |
| 243 | #endif // PERF_TEST_WITH_ACML |
| 244 | |
| 245 | return time; |
| 246 | } |
| 247 | |
| 248 | |
| 249 | template <typename ElemType> nano_time_t |
nothing calls this directly
no test coverage detected