| 225 | |
| 226 | template <> |
| 227 | void xHemv<cl_float2>::call_func() |
| 228 | { |
| 229 | timer.Start(timer_id); |
| 230 | clblasChemv(buffer.order, buffer.uplo, buffer.N, buffer.alpha, buffer.A, |
| 231 | buffer.offa, buffer.lda, buffer.X, buffer.offx, buffer.incx, |
| 232 | buffer.beta, buffer.Y, buffer.offy, buffer.incy, numQueues, queues_, 0, NULL,&event_); |
| 233 | clWaitForEvents(1, &event_); |
| 234 | timer.Stop(timer_id); |
| 235 | } |
| 236 | |
| 237 | template <> |
| 238 | void xHemv<cl_double2>::call_func() |
nothing calls this directly
no test coverage detected