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

Method gflops

src/client/clfunc_xtrsm.hpp:722–734  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

720
721template<>
722double
723xTrsm<cl_float2>::
724gflops()
725{
726 if (buffer_.side_ == clblasLeft)
727 {
728 return 4.0*buffer_.m_*(buffer_.m_+1)*buffer_.n_/time_in_ns();
729 }
730 else
731 {
732 return 4.0*buffer_.m_*(buffer_.n_+1)*buffer_.n_/time_in_ns();
733 }
734}
735
736
737template<>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected