|
TRIQS/nda 1.3.0
Multi-dimensional array library for C++
|
#include "../basic_array.hpp"#include "../basic_functions.hpp"#include "../blas/gemm.hpp"#include "../blas/tools.hpp"#include "../concepts.hpp"#include "../declarations.hpp"#include "../layout/policies.hpp"#include "../mem/address_space.hpp"#include "../mem/policies.hpp"#include "../traits.hpp"#include <type_traits>#include <utility>Provides a generic matrix-matrix multiplication.
Definition in file matmul.hpp.
Go to the source code of this file.
Functions | |
|
template<Matrix A, Matrix B, MemoryMatrix C> requires (mem::have_host_compatible_addr_space<A, B, C>) | |
| void | nda::linalg::detail::gemm_generic (auto alpha, A const &a, B const &b, auto beta, C &&c) |
| Generic matrix-matrix multiplication for types not supported by BLAS. | |
| template<Matrix A, Matrix B> | |
| auto | nda::linalg::matmul (A &&a, B &&b) |
| Compute the matrix-matrix product of two nda::matrix objects. | |