| 624 | |
| 625 | template<> |
| 626 | double |
| 627 | xSymm<cl_float2>:: |
| 628 | gflops() |
| 629 | { |
| 630 | if (buffer.side == clblasLeft) |
| 631 | return static_cast<double>((8 * buffer.M * buffer.M * buffer.N)/time_in_ns()); |
| 632 | else |
| 633 | return static_cast<double>((8 * buffer.N * buffer.N * buffer.M)/time_in_ns()); |
| 634 | } |
| 635 | |
| 636 | template<> |
| 637 | double |
nothing calls this directly
no outgoing calls
no test coverage detected