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