| 252 | |
| 253 | template<> |
| 254 | void |
| 255 | xGer<cl_float>:: |
| 256 | call_func() |
| 257 | { |
| 258 | timer.Start(timer_id); |
| 259 | clblasSger(buffer_.order_, buffer_.m_, buffer_.n_, buffer_.alpha, buffer_.x_, buffer_.offX, 1, buffer_.y_, buffer_.offY, |
| 260 | 1, buffer_.a_, buffer_.offA, buffer_.lda_, numQueues, queues_, 0, NULL, |
| 261 | &event_); |
| 262 | clWaitForEvents(1, &event_); |
| 263 | timer.Stop(timer_id); |
| 264 | } |
| 265 | |
| 266 | template<> |
| 267 | void |
nothing calls this directly
no test coverage detected