| 285 | |
| 286 | template <> |
| 287 | void xGerc<cl_float2>::call_func() |
| 288 | { |
| 289 | timer.Start(timer_id); |
| 290 | clblasCgerc(buffer.order, buffer.M, buffer.N, buffer.alpha, buffer.X, buffer.offx, |
| 291 | buffer.incx, buffer.Y, buffer.offy, buffer.incy, buffer.A, buffer.offa, buffer.lda, numQueues, queues_, 0, NULL,&event_); |
| 292 | clWaitForEvents(1, &event_); |
| 293 | timer.Stop(timer_id); |
| 294 | } |
| 295 | |
| 296 | template <> |
| 297 | void xGerc<cl_double2>::call_func() |
nothing calls this directly
no test coverage detected