| 229 | |
| 230 | template<> |
| 231 | void |
| 232 | xSymv<float>:: |
| 233 | call_func() |
| 234 | { |
| 235 | timer.Start(timer_id); |
| 236 | |
| 237 | clblasSsymv(order_, buffer_.uplo_, buffer_.n_, buffer_.alpha_, |
| 238 | buffer_.buf_a_, buffer_.offA_, buffer_.lda_, |
| 239 | buffer_.buf_x_, 0, 1, buffer_.beta_, buffer_.buf_y_, |
| 240 | 0, 1, numQueues, queues_, 0, NULL, &event_); |
| 241 | |
| 242 | clWaitForEvents(1, &event_); |
| 243 | timer.Stop(timer_id); |
| 244 | } |
| 245 | |
| 246 | template<> |
| 247 | void |
nothing calls this directly
no test coverage detected