svMultiPhysics
Loading...
Searching...
No Matches
omp_la.h
1// SPDX-FileCopyrightText: Copyright (c) Stanford University, The Regents of the University of California, and others.
2// SPDX-License-Identifier: BSD-3-Clause
3
4#include "fils_struct.hpp"
5
6namespace omp_la {
7
8using namespace fsi_linear_solver;
9
10void omp_mul_s(const int nNo, const double r, Vector<double>& U);
11
12void omp_mul_v(const int dof, const int nNo, const double r, Array<double>& U);
13
14void omp_sum_s(const int nNo, const double r, Vector<double>& U, const Vector<double>& V);
15
16void omp_sum_v(const int dof, const int nNo, const double r, Array<double>& U, const Array<double>& V);
17
18};
The Vector template class is used for storing int and double data.
Definition Vector.h:23