| 308 | |
| 309 | template<> |
| 310 | void |
| 311 | xGemv<float>:: |
| 312 | call_func() |
| 313 | { |
| 314 | timer.Start(timer_id); |
| 315 | |
| 316 | clblasSgemv(order_, buffer_.trans_a_, buffer_.m_, buffer_.n_, |
| 317 | buffer_.alpha_, buffer_.buf_a_, buffer_.offA_, |
| 318 | buffer_.lda_, buffer_.buf_x_, 0, 1, buffer_.beta_, |
| 319 | buffer_.buf_y_, 0, 1, numQueues, queues_, 0, NULL, &event_); |
| 320 | |
| 321 | clWaitForEvents(1, &event_); |
| 322 | timer.Stop(timer_id); |
| 323 | } |
| 324 | |
| 325 | template<> |
| 326 | void |
nothing calls this directly
no test coverage detected