| 586 | } |
| 587 | |
| 588 | template <typename T> cl_int |
| 589 | GemmMetod<T>::run() |
| 590 | { |
| 591 | return (cl_int)::clMath::clblas::gemm(this->order, transA, transB, |
| 592 | this->size, this->size, this->size, this->alpha, this->bufA, 0, |
| 593 | this->size, this->bufB, 0, this->size, this->beta, this->bufC, 0, |
| 594 | this->size, this->qnum, this->queues, this->inEventCount, |
| 595 | this->inEvent, this->outEvent); |
| 596 | } |
| 597 | |
| 598 | ///////////////////////////////////////////////////////////////////////////////////////////////////// |
| 599 | template<typename T> |
no test coverage detected