Julia : BLAS.gemm!() parameters
问题 I want to use the BLAS package. To do so, the meaning of the two first parameters of the gemm() function is not evident for me. What do the parameters 'N' and 'T' represent? BLAS.gemm!('N', 'T', lr, alpha, A, B, beta, C) What is the difference between BLAS.gemm and BLAS.gemm! ? 回答1: According to the documentation gemm!(tA, tB, alpha, A, B, beta, C) Update C as alpha * A * B + beta*C or the other three variants according to tA (transpose A) and tB. Returns the updated C. Note: here, alpha and