49 #ifndef __INTREPID2_HGRAD_TRI_CN_FEM_ORTH_HPP__ 50 #define __INTREPID2_HGRAD_TRI_CN_FEM_ORTH_HPP__ 70 template<
typename OutputViewType,
71 typename inputViewType,
72 typename workViewType,
73 bool hasDeriv, ordinal_type n>
75 KOKKOS_INLINE_FUNCTION
77 generate( OutputViewType output,
78 const inputViewType input,
80 const ordinal_type p );
86 template<
typename OutputViewType,
87 typename inputViewType,
88 typename workViewType,
91 KOKKOS_INLINE_FUNCTION
93 generate( OutputViewType output,
94 const inputViewType input,
96 const ordinal_type p );
102 template<
typename OutputViewType,
103 typename inputViewType,
104 typename workViewType,
107 KOKKOS_INLINE_FUNCTION
109 generate( OutputViewType output,
110 const inputViewType input,
112 const ordinal_type p );
124 template<EOperator opType>
126 template<
typename OutputViewType,
127 typename inputViewType,
128 typename workViewType>
129 KOKKOS_INLINE_FUNCTION
131 getValues( OutputViewType output,
132 const inputViewType input,
134 const ordinal_type order);
137 template<
typename ExecSpaceType, ordinal_type numPtsPerEval,
138 typename outputValueValueType,
class ...outputValueProperties,
139 typename inputPointValueType,
class ...inputPointProperties>
141 getValues( Kokkos::DynRankView<outputValueValueType,outputValueProperties...> outputValues,
142 const Kokkos::DynRankView<inputPointValueType, inputPointProperties...> inputPoints,
143 const ordinal_type order,
149 template<
typename outputValueViewType,
150 typename inputPointViewType,
151 typename workViewType,
153 ordinal_type numPtsEval>
155 outputValueViewType _outputValues;
156 const inputPointViewType _inputPoints;
158 const ordinal_type _order;
160 KOKKOS_INLINE_FUNCTION
161 Functor( outputValueViewType outputValues_,
162 inputPointViewType inputPoints_,
164 const ordinal_type order_ )
165 : _outputValues(outputValues_), _inputPoints(inputPoints_), _work(work_),_order(order_){}
167 KOKKOS_INLINE_FUNCTION
168 void operator()(
const size_type iter)
const {
172 const auto ptRange = Kokkos::pair<ordinal_type,ordinal_type>(ptBegin, ptEnd);
173 const auto input = Kokkos::subview( _inputPoints, ptRange, Kokkos::ALL() );
176 case OPERATOR_VALUE : {
177 auto output = Kokkos::subview( _outputValues, Kokkos::ALL(), ptRange );
184 const auto work = Kokkos::subview( _work, Kokkos::ALL(), ptRange, Kokkos::ALL() );
185 auto output = Kokkos::subview( _outputValues, Kokkos::ALL(), ptRange, Kokkos::ALL() );
199 auto output = Kokkos::subview( _outputValues, Kokkos::ALL(), ptRange, Kokkos::ALL() );
204 INTREPID2_TEST_FOR_ABORT(
true,
205 ">>> ERROR: (Intrepid2::Basis_HGRAD_TRI_Cn_FEM_ORTH::Functor) operator is not supported");
216 template<
typename ExecSpaceType = void,
217 typename outputValueType = double,
218 typename pointValueType =
double>
220 :
public Basis<ExecSpaceType,outputValueType,pointValueType> {
222 typedef double value_type;
239 getValues( OutputViewType outputValues,
240 const PointViewType inputPoints,
241 const EOperator operatorType = OPERATOR_VALUE )
const override {
242 #ifdef HAVE_INTREPID2_DEBUG 250 Impl::Basis_HGRAD_TRI_Cn_FEM_ORTH::
251 getValues<ExecSpaceType,numPtsPerEval>( outputValues,
An abstract base class that defines interface for concrete basis implementations for Finite Element (...
Implementation of the default H(grad)-compatible orthogonal basis (Dubiner) of arbitrary degree on tr...
See Intrepid2::Basis_HGRAD_TRI_Cn_FEM_ORTH.
ordinal_type getCardinality() const
Returns cardinality of the basis.
See Intrepid2::Basis_HGRAD_TRI_Cn_FEM_ORTH.
static constexpr ordinal_type MaxNumPtsPerBasisEval
The maximum number of points to eval in serial mode.
See Intrepid2::Basis_HGRAD_TRI_Cn_FEM_ORTH.
EOperator
Enumeration of primitive operators available in Intrepid. Primitive operators act on reconstructed fu...
void getValues_HGRAD_Args(const outputValueViewType outputValues, const inputPointViewType inputPoints, const EOperator operatorType, const shards::CellTopology cellTopo, const ordinal_type basisCard)
Runtime check of the arguments for the getValues method in an HGRAD-conforming FEM basis...
Definition file for FEM orthogonal basis functions of arbitrary degree for H(grad) functions on TRI...
ordinal_type getDegree() const
Returns the degree of the basis.
shards::CellTopology getBaseCellTopology() const
Returns the base cell topology for which the basis is defined. See Shards documentation https://trili...
See Intrepid2::Basis_HGRAD_TRI_Cn_FEM_ORTH.
Header file for the abstract base class Intrepid2::Basis.
Basis_HGRAD_TRI_Cn_FEM_ORTH(const ordinal_type order)
Constructor.