BELFEM 0.9.0
Berkeley Lab Finite Element Framework
Loading...
Searching...
No Matches
cl_Vector.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_VECTOR_HPP
13#define BELFEM_CL_VECTOR_HPP
14
15// include implementation
16#ifdef BELFEM_ARMADILLO
17#include "cl_AR_Vector.hpp"
20#elif BELFEM_BLAZE
21#include "cl_BZ_Vector.hpp"
24#endif
25
26// include operators
27#include "op_VectorPlus.hpp"
28#include "op_VectorMinus.hpp"
29#include "op_VectorTimes.hpp"
30#include "op_VectorDivide.hpp"
31#endif