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