Class MatrixMatrixMult_MT_DDRM
This class contains various types of matrix matrix multiplication operations for DMatrix1Row
.
Two algorithms that are equivalent can often have very different runtime performance. This is because of how modern computers uses fast memory caches to speed up reading/writing to data. Depending on the order in which variables are processed different algorithms can run much faster than others, even if the number of operations is the same.
Algorithms that are labeled as 'reorder' are designed to avoid caching jumping issues, some times at the cost of increasing the number of operations. This is important for large matrices. The straight forward implementation seems to be faster for small matrices.
Algorithms that are labeled as 'aux' use an auxiliary array of length n. This array is used to create a copy of an out of sequence column vector that is referenced several times. This reduces the number of cache misses. If the 'aux' parameter passed in is null then the array is declared internally.
Typically the straight forward implementation runs about 30% faster on smaller matrices and about 5 times slower on larger matrices. This is all computer architecture and matrix shape/size specific.
DO NOT MODIFY. Automatically generated code created by GenerateMatrixMatrixMult_DDRM
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
mult_reorder
(double alpha, DMatrix1Row A, DMatrix1Row B, DMatrix1Row C) static void
mult_reorder
(DMatrix1Row A, DMatrix1Row B, DMatrix1Row C) static void
mult_small
(double alpha, DMatrix1Row A, DMatrix1Row B, DMatrix1Row C) static void
mult_small
(DMatrix1Row A, DMatrix1Row B, DMatrix1Row C) static void
multAdd_reorder
(double alpha, DMatrix1Row A, DMatrix1Row B, DMatrix1Row C) static void
multAdd_reorder
(DMatrix1Row A, DMatrix1Row B, DMatrix1Row C) static void
multAdd_small
(double alpha, DMatrix1Row A, DMatrix1Row B, DMatrix1Row C) static void
multAdd_small
(DMatrix1Row A, DMatrix1Row B, DMatrix1Row C) static void
multAddTransA_reorder
(double alpha, DMatrix1Row A, DMatrix1Row B, DMatrix1Row C) static void
static void
multAddTransA_small
(double alpha, DMatrix1Row A, DMatrix1Row B, DMatrix1Row C) static void
static void
multAddTransAB
(double alpha, DMatrix1Row A, DMatrix1Row B, DMatrix1Row C) static void
multAddTransAB
(DMatrix1Row A, DMatrix1Row B, DMatrix1Row C) static void
multAddTransB
(double alpha, DMatrix1Row A, DMatrix1Row B, DMatrix1Row C) static void
multAddTransB
(DMatrix1Row A, DMatrix1Row B, DMatrix1Row C) static void
multTransA_reorder
(double alpha, DMatrix1Row A, DMatrix1Row B, DMatrix1Row C) static void
static void
multTransA_small
(double alpha, DMatrix1Row A, DMatrix1Row B, DMatrix1Row C) static void
static void
multTransAB
(double alpha, DMatrix1Row A, DMatrix1Row B, DMatrix1Row C) static void
multTransAB
(DMatrix1Row A, DMatrix1Row B, DMatrix1Row C) static void
multTransB
(double alpha, DMatrix1Row A, DMatrix1Row B, DMatrix1Row C) static void
multTransB
(DMatrix1Row A, DMatrix1Row B, DMatrix1Row C)
-
Constructor Details
-
MatrixMatrixMult_MT_DDRM
public MatrixMatrixMult_MT_DDRM()
-
-
Method Details
-
mult_reorder
-
mult_small
-
multTransA_reorder
-
multTransA_small
-
multTransAB
-
multTransB
-
multAdd_reorder
-
multAdd_small
-
multAddTransA_reorder
-
multAddTransA_small
-
multAddTransAB
-
multAddTransB
-
mult_reorder
-
mult_small
-
multTransA_reorder
-
multTransA_small
-
multTransAB
-
multTransB
-
multAdd_reorder
-
multAdd_small
-
multAddTransA_reorder
-
multAddTransA_small
-
multAddTransAB
-
multAddTransB
-