MCPcopy Create free account
hub / github.com/clMathLibraries/clBLAS / gflops

Method gflops

src/client/clfunc_xsymm.hpp:626–634  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

624
625template<>
626double
627xSymm<cl_float2>::
628gflops()
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
636template<>
637double

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected