MJay
GEMM은 무엇일까? 본문
GEneral Matrix to Matrix Multiplication
multiplies two input matrices together to get an output one
C := alpha*op(A)*op(B) + beta*C,
scalar-matrix-matirx product
op(X) is one of op(X) = X, or op(X) = XT, or op(X) = XH,
alpha and beta are scalars,
A, B and C are matrices:
op(A) is an m-by-k matrix,
op(B) is a k-by-n matrix,
C is an m-by-n matrix.
'Cloud Computing > MAGMA' 카테고리의 다른 글
Magma 가 설치된 이미지 만들기 (0) | 2017.07.16 |
---|---|
Magma 에서 나오는 몇가지용어 (0) | 2017.07.16 |
Magma함수 정리 ( zfill_matrix, MAGMA_ZMAKE) (0) | 2017.07.15 |
행렬 Column-Wise 뜻 (0) | 2017.07.15 |
Magma_opts란 (0) | 2017.07.14 |