Generic class which is specialized for different backends to compute matrix products
在文件 MatrixProduct.h 第 60 行定义.
Public 类型 | |
| typedef Matrix::Scalar | T |
静态 Public 成员函数 | |
| static void | compute (Matrix A, Matrix B, Matrix C, bool transpose_A, bool transpose_B, bool overwrite) |
| typedef Matrix::Scalar T |
Scalar type
在文件 MatrixProduct.h 第 63 行定义.
|
static |
Performs matrix multiplication
| A | First matrix |
| B | Second matrix |
| C | Result of the operation |
| transpose_A | Whether to the transpose of A should be used instead of A |
| transpose_B | Whether to the transpose of B should be used instead of B |
| overwrite | If true, the values in C are overwritten with the result, otherwise, the result is added to the existing values |