| 257 | |
| 258 | template<> |
| 259 | void |
| 260 | xTrmv<cl_float>:: |
| 261 | call_func() |
| 262 | { |
| 263 | timer.Start(timer_id); |
| 264 | clblasStrmv(order_, buffer_.uplo_, buffer_.trans_a_, |
| 265 | buffer_.diag_, buffer_.m_, buffer_.buf_a_, 0, |
| 266 | buffer_.lda_, buffer_.buf_x_, 0, 1, buffer_.scratch_, |
| 267 | numQueues, queues_, 0, NULL, &event_); |
| 268 | clWaitForEvents(1, &event_); |
| 269 | timer.Stop(timer_id); |
| 270 | } |
| 271 | |
| 272 | template<> |
| 273 | void |
nothing calls this directly
no test coverage detected