C := α AT
B T
+ β C
|
where none of the matrices have special structure
|
gemm:
GEneral
Matrix
Multiplication
|
C := α AT
B T+ β C
or
C := α BT AT
+ β C
|
where
A is triangular
and the other matrices have no special structure
|
trmm_x:
TRiangular
Matrix
Multiplication,
eXpert version
|
C := α A- T
BT+ β C
or
C := α BT A- T
+ β C
|
where
A is triangular
and the other matrices have no special structure
|
trsm_x:
TRiangular
Solve with
Multiple right-hand sides,
eXpert version
|
C := α AT
C
or
C := α C AT
|
where
A is triangular
and C has no special structure
|
trmm:
TRiangular
Matrix
Multiplication
|
C := α A- T
C
or
C := α C A- T
|
where
A is triangular
and C has no special structure
|
trsm:
TRiangular
Solve with
Multiple right-hand sides
|
C := α A
B + β C
or
C := α B A
+ β C
|
where
A is symmetric
and the other matrices have no special structure
|
symm:
SYmmetric
Matrix
Multiplication
|
C := α AT
ATT
+ β C
|
where
C is symmetric
and A has no special structure, or
|
syrk:
SYmmetric
Rank-K update
|
C :=
α
( AT
BTT
+
( BT
ATT
)
+ β C
|
where
C is symmetric,
and A and B have no special structure.
|
syr2k:
SYmmetric
Rank-2K update
|