| 786 | |
| 787 | template<> |
| 788 | std::string |
| 789 | xTrmm<cl_float2>:: |
| 790 | gflops_formula() |
| 791 | { |
| 792 | if (buffer_.side_ == clblasLeft) |
| 793 | { |
| 794 | return "4.0*M*(M+1)*N/time"; |
| 795 | } |
| 796 | else |
| 797 | { |
| 798 | return "4.0*M*(N+1)*N/time"; |
| 799 | } |
| 800 | } |
| 801 | |
| 802 | template<> |
| 803 | std::string |
nothing calls this directly
no outgoing calls
no test coverage detected