| 751 | |
| 752 | template<> |
| 753 | std::string |
| 754 | xTrsm<cl_float2>:: |
| 755 | gflops_formula() |
| 756 | { |
| 757 | if (buffer_.side_ == clblasLeft) |
| 758 | { |
| 759 | return "4.0*M*(M+1)*N/time"; |
| 760 | } |
| 761 | else |
| 762 | { |
| 763 | return "4.0*M*(N+1)*N/time"; |
| 764 | } |
| 765 | } |
| 766 | |
| 767 | template<> |
| 768 | std::string |
nothing calls this directly
no outgoing calls
no test coverage detected