| 573 | |
| 574 | template<> |
| 575 | void |
| 576 | xHer2k<cl_float2>::call_func() |
| 577 | { |
| 578 | timer.Start(timer_id); |
| 579 | clblasCher2k(order_, buffer_.uplo_, buffer_.transA_, |
| 580 | buffer_.N_, buffer_.K_, buffer_.alpha_, |
| 581 | buffer_.A_, buffer_.offa_, buffer_.lda_, |
| 582 | buffer_.B_, buffer_.offb_, buffer_.ldb_, |
| 583 | buffer_.beta_.s[0], buffer_.C_, buffer_.offc_, |
| 584 | buffer_.ldc_, numQueues, queues_, 0, NULL, &event_); |
| 585 | clWaitForEvents(1, &event_); |
| 586 | timer.Stop(timer_id); |
| 587 | } |
| 588 | |
| 589 | template<> |
| 590 | void |
nothing calls this directly
no test coverage detected