|
ergo
|
#include <stdlib.h>#include "matrix_algebra.h"#include "memorymanag.h"#include "output.h"#include "../matrix/mat_gblas.h"Macros | |
| #define | USE_BLAS_MM |
Functions | |
| void | multiply_matrices_general_2 (int An1, int An2, int Bn1, int Bn2, const ergo_real *A, const ergo_real *B, ergo_real *AB, bool initToZero) |
| void | multiply_matrices_general (int An1, int An2, int Bn1, int Bn2, const ergo_real *A, const ergo_real *B, ergo_real *AB) |
| void | multiply_matrices_general_T_1 (int An1, int An2, int Bn1, int Bn2, const ergo_real *A, const ergo_real *B, ergo_real *AB) |
| void | multiply_matrices_general_T_2 (int An1, int An2, int Bn1, int Bn2, const ergo_real *A, const ergo_real *B, ergo_real *AB) |
| void | multiply2matrices (int n, ergo_real *A, ergo_real *B, ergo_real *AB) |
| void | multiply2matricesSymm (int n, ergo_real *A, ergo_real *B, ergo_real *AB) |
| void | multiply2matricesSymmResult (int n, ergo_real *A, ergo_real *B, ergo_real *AB) |
| void | computeSquareOfSymmetricMatrix (int n, const ergo_real *Aa, const ergo_real *Ab, ergo_real *A2) |
| void | multiply3matrices (int n, ergo_real *A, ergo_real *B, ergo_real *C, ergo_real *ABC) |
| #define USE_BLAS_MM |
| void computeSquareOfSymmetricMatrix | ( | int | n, |
| const ergo_real * | Aa, | ||
| const ergo_real * | Ab, | ||
| ergo_real * | A2 | ||
| ) |
References mat::gemm().
Referenced by multiply3matrices().
References ergo_free(), ergo_malloc(), and multiply2matrices().
| void multiply_matrices_general | ( | int | An1, |
| int | An2, | ||
| int | Bn1, | ||
| int | Bn2, | ||
| const ergo_real * | A, | ||
| const ergo_real * | B, | ||
| ergo_real * | AB | ||
| ) |
References do_output(), ergo_free(), ergo_malloc(), mat::gemm(), LOG_AREA_LOWLEVEL, and LOG_CAT_ERROR.
Referenced by multiply_matrices_general_T_1(), and multiply_matrices_general_T_2().
| void multiply_matrices_general_2 | ( | int | An1, |
| int | An2, | ||
| int | Bn1, | ||
| int | Bn2, | ||
| const ergo_real * | A, | ||
| const ergo_real * | B, | ||
| ergo_real * | AB, | ||
| bool | initToZero | ||
| ) |
References do_output(), mat::gemm(), LOG_AREA_LOWLEVEL, and LOG_CAT_ERROR.
| void multiply_matrices_general_T_1 | ( | int | An1, |
| int | An2, | ||
| int | Bn1, | ||
| int | Bn2, | ||
| const ergo_real * | A, | ||
| const ergo_real * | B, | ||
| ergo_real * | AB | ||
| ) |
References do_output(), ergo_free(), ergo_malloc(), LOG_AREA_LOWLEVEL, LOG_CAT_ERROR, and multiply_matrices_general().
Referenced by get_dens_from_cmo_zeroT().
| void multiply_matrices_general_T_2 | ( | int | An1, |
| int | An2, | ||
| int | Bn1, | ||
| int | Bn2, | ||
| const ergo_real * | A, | ||
| const ergo_real * | B, | ||
| ergo_real * | AB | ||
| ) |
References do_output(), ergo_free(), ergo_malloc(), LOG_AREA_LOWLEVEL, LOG_CAT_ERROR, and multiply_matrices_general().