FEAT 3
Finite Element Analysis Toolbox
Loading...
Searching...
No Matches
row_norm_generic-eickt.cpp
1// FEAT3: Finite Element Analysis Toolbox, Version 3
2// Copyright (C) 2010 by Stefan Turek & the FEAT group
3// FEAT3 is released under the GNU General Public License version 3,
4// see the file 'copyright.txt' in the top level directory for details.
5
6// includes, FEAT
8#include <kernel/lafem/arch/row_norm.hpp>
9
10using namespace FEAT;
11using namespace FEAT::LAFEM;
12using namespace FEAT::LAFEM::Arch;
13
14template void RowNorm::csr_generic_norm2(float*, const float* const, const Index* const,
15const Index* const, const Index);
16template void RowNorm::csr_generic_norm2(double*, const double* const, const Index* const,
17const Index* const, const Index);
18
19template void RowNorm::csr_generic_norm2sqr(float*, const float* const, const Index* const,
20const Index* const, const Index);
21template void RowNorm::csr_generic_norm2sqr(double*, const double* const, const Index* const,
22const Index * const, const Index);
23
24template void RowNorm::csr_generic_scaled_norm2sqr(float*, const float* const, const float* const, const Index* const,
25const Index* const, const Index);
26template void RowNorm::csr_generic_scaled_norm2sqr(double*, const double* const, const double* const, const Index* const,
27const Index* const, const Index);
28
29template void RowNorm::bcsr_generic_norm2(float *, const float * const, const Index * const, const Index * const, const Index, const int, const int);
30template void RowNorm::bcsr_generic_norm2(double *, const double * const, const Index * const, const Index * const, const Index, const int, const int);
31
32template void RowNorm::bcsr_generic_norm2sqr(float*, const float* const, const Index* const,
33const Index* const, const Index, const int, const int);
34template void RowNorm::bcsr_generic_norm2sqr(double*, const double* const, const Index* const,
35const Index * const, const Index, const int, const int);
36
37template void RowNorm::bcsr_generic_scaled_norm2sqr(float*, const float* const, const float* const,
38const Index* const, const Index* const, const Index, const int, const int);
39template void RowNorm::bcsr_generic_scaled_norm2sqr(double*, const double* const, const double* const,
40const Index* const, const Index* const, const Index, const int, const int);
FEAT Kernel base header.
LAFEM namespace.
Definition: apply.hpp:22
FEAT namespace.
Definition: adjactor.hpp:12
std::uint64_t Index
Index data type.