Hi,
I am trying to understand how magma is measuring the number of flops in a matrix multiplication. it defines a
FLOPS(m,n,k) (FMULS_GEMM(m,n,k) + FADDS_GEMM(m,n,k))
FMULS_GEMM and FADDS_GEMM do the same operation -> m*n*k. I think the number of operations is right for single precision, but why 2 macros doing the same with different names?
