BELFEM 0.9.0
Berkeley Lab Finite Element Framework
Loading...
Searching...
No Matches
cl_Matrix.hpp
Go to the documentation of this file.
1/*
2 * BELFEM -- The Berkeley Lab Finite Element Framework
3 * Copyright (c) 2026, The Regents of the University of California,
4 * through Lawrence Berkeley National Laboratory (subject to receipt of any required
5 * approvals from the U.S. Dept. of Energy). All rights reserved.
6 *
7 * Developers: Christian Messe, Gregory Giard
8 *
9 * See the top-level LICENSE file for the complete license and disclaimer.
10 */
11
12#ifndef BELFEM_CL_MATRIX_HPP
13#define BELFEM_CL_MATRIX_HPP
14
15#include "cl_Vector.hpp"
16
17// include implementation
18#ifdef BELFEM_ARMADILLO
19#include "cl_AR_Matrix.hpp"
21#elif BELFEM_BLAZE
22#include "cl_BZ_Matrix.hpp"
24#endif
25
26#include "op_MatrixPlus.hpp"
27#include "op_MatrixMinus.hpp"
28#include "op_MatrixTimes.hpp"
29#endif //BELFEM_CL_MATRIX_HPP