16 #ifndef __INTREPID2_HCURL_TET_IN_FEM_DEF_HPP__
17 #define __INTREPID2_HCURL_TET_IN_FEM_DEF_HPP__
21 #include "Teuchos_SerialDenseMatrix.hpp"
29 template<EOperator OpType>
30 template<
typename OutputViewType,
31 typename InputViewType,
32 typename WorkViewType,
33 typename VinvViewType>
34 KOKKOS_INLINE_FUNCTION
36 Basis_HCURL_TET_In_FEM::Serial<OpType>::
37 getValues( OutputViewType output,
38 const InputViewType input,
40 const VinvViewType coeffs ) {
42 constexpr ordinal_type spaceDim = 3;
44 cardPn = coeffs.extent(0)/spaceDim,
45 card = coeffs.extent(1),
46 npts = input.extent(0);
49 ordinal_type order = 0;
51 if (card == CardinalityHCurlTet(p)) {
57 typedef typename Kokkos::DynRankView<typename InputViewType::value_type, typename WorkViewType::memory_space> ViewType;
58 auto vcprop = Kokkos::common_view_alloc_prop(input);
59 auto ptr = work.data();
62 case OPERATOR_VALUE: {
63 const ViewType phis(Kokkos::view_wrap(ptr, vcprop), card, npts);
66 Impl::Basis_HGRAD_TET_Cn_FEM_ORTH::
67 Serial<OpType>::getValues(phis, input, dummyView, order);
69 for (ordinal_type i=0;i<card;++i)
70 for (ordinal_type j=0;j<npts;++j)
71 for (ordinal_type d=0;d<spaceDim;++d) {
72 output.access(i,j,d) = 0.0;
73 for (ordinal_type k=0;k<cardPn;++k)
74 output.access(i,j,d) += coeffs(k+d*cardPn,i) * phis(k,j);
79 const ViewType phis(Kokkos::view_wrap(ptr, vcprop), card, npts, spaceDim);
80 ptr += card*npts*spaceDim*get_dimension_scalar(input);
81 const ViewType workView(Kokkos::view_wrap(ptr, vcprop), card, npts, spaceDim+1);
83 Impl::Basis_HGRAD_TET_Cn_FEM_ORTH::
84 Serial<OPERATOR_GRAD>::getValues(phis, input, workView, order);
86 for (ordinal_type i=0;i<card;++i) {
87 for (ordinal_type j=0;j<npts;++j) {
88 for (ordinal_type d=0; d< spaceDim; ++d) {
89 output.access(i,j,d) = 0.0;
90 ordinal_type d1 = (d+1) % spaceDim, d2 = (d+2) % spaceDim;
91 for (ordinal_type k=0; k<cardPn; ++k)
92 output.access(i,j,d) += coeffs(k+d2*cardPn,i)*phis(k,j,d1)
93 -coeffs(k+d1*cardPn,i)*phis(k,j,d2);
100 INTREPID2_TEST_FOR_ABORT(
true,
101 ">>> ERROR (Basis_HCURL_TET_In_FEM): Operator type not implemented");
106 template<
typename DT, ordinal_type numPtsPerEval,
107 typename outputValueValueType,
class ...outputValueProperties,
108 typename inputPointValueType,
class ...inputPointProperties,
109 typename vinvValueType,
class ...vinvProperties>
111 Basis_HCURL_TET_In_FEM::
113 const typename DT::execution_space& space,
114 Kokkos::DynRankView<outputValueValueType,outputValueProperties...> outputValues,
115 const Kokkos::DynRankView<inputPointValueType, inputPointProperties...> inputPoints,
116 const Kokkos::DynRankView<vinvValueType, vinvProperties...> coeffs,
117 const EOperator operatorType) {
118 typedef Kokkos::DynRankView<outputValueValueType,outputValueProperties...> outputValueViewType;
119 typedef Kokkos::DynRankView<inputPointValueType, inputPointProperties...> inputPointViewType;
120 typedef Kokkos::DynRankView<vinvValueType, vinvProperties...> vinvViewType;
121 typedef typename ExecSpace<typename inputPointViewType::execution_space,typename DT::execution_space>::ExecSpaceType ExecSpaceType;
124 const auto loopSizeTmp1 = (inputPoints.extent(0)/numPtsPerEval);
125 const auto loopSizeTmp2 = (inputPoints.extent(0)%numPtsPerEval != 0);
126 const auto loopSize = loopSizeTmp1 + loopSizeTmp2;
127 Kokkos::RangePolicy<ExecSpaceType,Kokkos::Schedule<Kokkos::Static> > policy(space, 0, loopSize);
129 typedef typename inputPointViewType::value_type inputPointType;
131 const ordinal_type cardinality = outputValues.extent(0);
132 const ordinal_type spaceDim = 3;
134 auto vcprop = Kokkos::common_view_alloc_prop(inputPoints);
135 typedef typename Kokkos::DynRankView< inputPointType, typename inputPointViewType::memory_space> workViewType;
137 switch (operatorType) {
138 case OPERATOR_VALUE: {
139 workViewType work(Kokkos::view_alloc(space,
"Basis_HCURL_TET_In_FEM::getValues::work", vcprop), cardinality, inputPoints.extent(0));
140 typedef Functor<outputValueViewType,inputPointViewType,vinvViewType, workViewType,
141 OPERATOR_VALUE,numPtsPerEval> FunctorType;
142 Kokkos::parallel_for( policy, FunctorType(outputValues, inputPoints, coeffs, work) );
145 case OPERATOR_CURL: {
146 workViewType work(Kokkos::view_alloc(space,
"Basis_HCURL_TET_In_FEM::getValues::work", vcprop), cardinality*(2*spaceDim+1), inputPoints.extent(0));
147 typedef Functor<outputValueViewType,inputPointViewType,vinvViewType, workViewType,
148 OPERATOR_CURL,numPtsPerEval> FunctorType;
149 Kokkos::parallel_for( policy, FunctorType(outputValues, inputPoints, coeffs, work) );
153 INTREPID2_TEST_FOR_EXCEPTION(
true , std::invalid_argument,
154 ">>> ERROR (Basis_HCURL_TET_In_FEM): Operator type not implemented" );
161 template<
typename DT,
typename OT,
typename PT>
164 const EPointType pointType ) {
166 constexpr ordinal_type spaceDim = 3;
167 this->basisCardinality_ = CardinalityHCurlTet(order);
168 this->basisDegree_ = order;
169 this->basisCellTopologyKey_ = shards::Tetrahedron<4>::key;
170 this->basisType_ = BASIS_FEM_LAGRANGIAN;
171 this->basisCoordinates_ = COORDINATES_CARTESIAN;
172 this->functionSpace_ = FUNCTION_SPACE_HCURL;
173 pointType_ = pointType;
174 const ordinal_type card = this->basisCardinality_;
176 const ordinal_type cardPn = Intrepid2::getPnCardinality<spaceDim>(order);
177 const ordinal_type cardPnm1 = Intrepid2::getPnCardinality<spaceDim>(order-1);
178 const ordinal_type cardPnm2 = Intrepid2::getPnCardinality<spaceDim>(order-2);
179 const ordinal_type cardVecPn = spaceDim*cardPn;
180 const ordinal_type cardVecPnm1 = spaceDim*cardPnm1;
181 const ordinal_type cardPnm1H = cardPnm1-cardPnm2;
185 INTREPID2_TEST_FOR_EXCEPTION( order >
Parameters::MaxOrder, std::invalid_argument,
"polynomial order exceeds the max supported by this class");
188 constexpr ordinal_type tagSize = 4;
190 ordinal_type tags[maxCard][tagSize];
193 Kokkos::DynRankView<scalarType,typename DT::execution_space::array_layout,Kokkos::HostSpace>
194 dofCoords(
"Hcurl::Tet::In::dofCoords", card, spaceDim);
196 Kokkos::DynRankView<scalarType,typename DT::execution_space::array_layout,Kokkos::HostSpace>
197 coeffs(
"Hcurl::Tet::In::coeffs", cardVecPn, card);
199 Kokkos::DynRankView<scalarType,typename DT::execution_space::array_layout,Kokkos::HostSpace>
200 dofCoeffs(
"Hcurl::Tet::In::dofCoeffs", card, spaceDim);
206 Kokkos::DynRankView<scalarType,Kokkos::LayoutLeft,Kokkos::HostSpace>
207 V1(
"Hcurl::Tet::In::V1", cardVecPn, cardVecPnm1 + spaceDim*cardPnm1H);
211 for (ordinal_type i=0;i<cardPnm1;i++)
212 for (ordinal_type d=0;d<spaceDim;d++)
213 V1(i+d*cardPn,i+d*cardPnm1) = 1.0;
219 Kokkos::DynRankView<scalarType,typename DT::execution_space::array_layout,Kokkos::HostSpace> cubPoints(
"Hcurl::Tet::In::cubPoints", myCub.
getNumPoints() , spaceDim );
220 Kokkos::DynRankView<scalarType,typename DT::execution_space::array_layout,Kokkos::HostSpace> cubWeights(
"Hcurl::Tet::In::cubWeights", myCub.
getNumPoints() );
224 Kokkos::DynRankView<scalarType,typename DT::execution_space::array_layout,Kokkos::HostSpace> phisAtCubPoints(
"Hcurl::Tet::In::phisAtCubPoints", cardPn , myCub.
getNumPoints() );
225 Impl::Basis_HGRAD_TET_Cn_FEM_ORTH::getValues<Kokkos::HostSpace::execution_space,Parameters::MaxNumPtsPerBasisEval>(
typename Kokkos::HostSpace::execution_space{},
232 for (ordinal_type i=0;i<cardPn;i++) {
233 for (ordinal_type j=0;j<cardPnm1H;j++) {
234 for (ordinal_type d=0; d< spaceDim; ++d) {
235 scalarType integral(0);
237 integral += cubWeights(k) * cubPoints(k,d)
238 * phisAtCubPoints(cardPnm2+j,k)
239 * phisAtCubPoints(i,k);
240 ordinal_type d1 = (d+1) % spaceDim, d2 = (d+2) % spaceDim;
241 V1(i+d2*cardPn,cardVecPnm1+d1*cardPnm1H + j) = -integral;
242 V1(i+d1*cardPn,cardVecPnm1+d2*cardPnm1H + j) = integral;
252 Kokkos::DynRankView<scalarType,Kokkos::LayoutLeft,Kokkos::HostSpace>
253 S(
"Hcurl::Tet::In::S", cardVecPn,1),
254 U(
"Hcurl::Tet::In::U", cardVecPn, cardVecPn),
255 Vt(
"Hcurl::Tet::In::Vt", cardVecPn, cardVecPn),
256 work(
"Hcurl::Tet::In::work", 5*cardVecPn,1),
257 rWork(
"Hcurl::Tet::In::rW", 1,1);
261 ordinal_type info = 0;
262 Teuchos::LAPACK<ordinal_type,scalarType> lapack;
282 #ifdef HAVE_INTREPID2_DEBUG
283 ordinal_type num_nonzero_sv = 0;
284 for (
int i=0;i<cardVecPn;i++)
285 num_nonzero_sv += (S(i,0) > 10*tolerence());
287 INTREPID2_TEST_FOR_EXCEPTION( num_nonzero_sv != card, std::invalid_argument,
288 ">>> ERROR: (Intrepid2::Basis_HCURL_TET_In_FEM( order, pointType), Matrix V1 should have rank equal to the cardinality of HCURL space");
292 Kokkos::DynRankView<scalarType,typename DT::execution_space::array_layout,Kokkos::HostSpace>
293 V2(
"Hcurl::Tet::In::V2", card ,cardVecPn);
295 shards::CellTopology cellTopo(shards::getCellTopologyData<shards::Tetrahedron<4> >());
296 const ordinal_type numEdges = cellTopo.getEdgeCount();
297 const ordinal_type numFaces = cellTopo.getFaceCount();
302 shards::CellTopology edgeTopo(shards::getCellTopologyData<shards::Line<2> >() );
303 shards::CellTopology faceTopo(shards::getCellTopologyData<shards::Triangle<3> >() );
317 Kokkos::DynRankView<scalarType,typename DT::execution_space::array_layout,Kokkos::HostSpace> linePts(
"Hcurl::Tet::In::linePts", numPtsPerEdge , 1 );
318 Kokkos::DynRankView<scalarType,typename DT::execution_space::array_layout,Kokkos::HostSpace> triPts(
"Hcurl::Tet::In::triPts", numPtsPerFace , 2 );
321 const ordinal_type offset = 1;
336 Kokkos::DynRankView<scalarType,typename DT::execution_space::array_layout,Kokkos::HostSpace> edgePts(
"Hcurl::Tet::In::edgePts", numPtsPerEdge , spaceDim );
337 Kokkos::DynRankView<scalarType,typename DT::execution_space::array_layout,Kokkos::HostSpace> facePts(
"Hcurl::Tet::In::facePts", numPtsPerFace , spaceDim );
338 Kokkos::DynRankView<scalarType,typename DT::execution_space::array_layout,Kokkos::HostSpace> phisAtEdgePoints(
"Hcurl::Tet::In::phisAtEdgePoints", cardPn , numPtsPerEdge );
339 Kokkos::DynRankView<scalarType,typename DT::execution_space::array_layout,Kokkos::HostSpace> phisAtFacePoints(
"Hcurl::Tet::In::phisAtFacePoints", cardPn , numPtsPerFace);
341 Kokkos::DynRankView<scalarType,typename DT::execution_space::array_layout,Kokkos::HostSpace> edgeTan(
"Hcurl::Tet::In::edgeTan", spaceDim );
344 for (ordinal_type i=0;i<numEdges;i++) {
355 Impl::Basis_HGRAD_TET_Cn_FEM_ORTH::getValues<Kokkos::HostSpace::execution_space,Parameters::MaxNumPtsPerBasisEval>(
typename Kokkos::HostSpace::execution_space{},
362 for (ordinal_type j=0;j<numPtsPerEdge;j++) {
364 const ordinal_type i_card = numPtsPerEdge*i+j;
367 for (ordinal_type k=0;k<cardPn;k++)
368 for (ordinal_type d=0;d<spaceDim;d++)
369 V2(i_card,k+d*cardPn) = edgeTan(d) * phisAtEdgePoints(k,j);
372 for(ordinal_type k=0; k<spaceDim; ++k) {
373 dofCoords(i_card,k) = edgePts(j,k);
374 dofCoeffs(i_card,k) = edgeTan(k);
380 tags[i_card][3] = numPtsPerEdge;
385 if(numPtsPerFace >0) {
386 Kokkos::DynRankView<scalarType,typename DT::execution_space::array_layout,Kokkos::HostSpace> faceTan1(
"Hcurl::Tet::In::edgeTan", spaceDim );
387 Kokkos::DynRankView<scalarType,typename DT::execution_space::array_layout,Kokkos::HostSpace> faceTan2(
"Hcurl::Tet::In::edgeTan", spaceDim );
389 for (ordinal_type i=0;i<numFaces;i++) {
401 Impl::Basis_HGRAD_TET_Cn_FEM_ORTH::getValues<Kokkos::HostSpace::execution_space,Parameters::MaxNumPtsPerBasisEval>(
typename Kokkos::HostSpace::execution_space{},
408 for (ordinal_type j=0;j<numPtsPerFace;j++) {
410 const ordinal_type i_card = numEdges*numPtsPerEdge+2*numPtsPerFace*i+2*j;
411 const ordinal_type i_card_p1 = i_card+1;
414 for (ordinal_type k=0;k<cardPn;k++)
415 for (ordinal_type d=0;d<spaceDim;d++) {
416 V2(i_card,k+d*cardPn) = faceTan1(d) * phisAtFacePoints(k,j);
417 V2(i_card_p1,k+d*cardPn) = faceTan2(d) * phisAtFacePoints(k,j);
421 for(ordinal_type k=0; k<spaceDim; ++k) {
422 dofCoords(i_card,k) = facePts(j,k);
423 dofCoords(i_card_p1,k) = facePts(j,k);
424 dofCoeffs(i_card,k) = faceTan1(k);
425 dofCoeffs(i_card_p1,k) = faceTan2(k);
430 tags[i_card][2] = 2*j;
431 tags[i_card][3] = 2*numPtsPerFace;
433 tags[i_card_p1][0] = 2;
434 tags[i_card_p1][1] = i;
435 tags[i_card_p1][2] = 2*j+1;
436 tags[i_card_p1][3] = 2*numPtsPerFace;
444 if (numPtsPerCell > 0) {
445 Kokkos::DynRankView<scalarType,typename DT::execution_space::array_layout,Kokkos::HostSpace>
446 cellPoints(
"Hcurl::Tet::In::cellPoints", numPtsPerCell , spaceDim );
453 Kokkos::DynRankView<scalarType,typename DT::execution_space::array_layout,Kokkos::HostSpace>
454 phisAtCellPoints(
"Hcurl::Tet::In::phisAtCellPoints", cardPn , numPtsPerCell );
455 Impl::Basis_HGRAD_TET_Cn_FEM_ORTH::getValues<Kokkos::HostSpace::execution_space,Parameters::MaxNumPtsPerBasisEval>(
typename Kokkos::HostSpace::execution_space{},
462 for (ordinal_type j=0;j<numPtsPerCell;j++) {
464 const ordinal_type i_card = numEdges*numPtsPerEdge+2*numFaces*numPtsPerFace+spaceDim*j;
466 for (ordinal_type k=0;k<cardPn;k++)
467 for (ordinal_type d=0;d<spaceDim;d++)
468 V2(i_card+d,d*cardPn+k) = phisAtCellPoints(k,j);
472 for(ordinal_type d=0; d<spaceDim; ++d) {
473 for(ordinal_type dim=0; dim<spaceDim; ++dim) {
474 dofCoords(i_card+d,dim) = cellPoints(j,dim);
475 dofCoeffs(i_card+d,dim) = (d==dim);
478 tags[i_card+d][0] = spaceDim;
479 tags[i_card+d][1] = 0;
480 tags[i_card+d][2] = spaceDim*j+d;
481 tags[i_card+d][3] = spaceDim*numPtsPerCell;
488 const ordinal_type lwork = card*card;
489 Kokkos::DynRankView<scalarType,Kokkos::LayoutLeft,Kokkos::HostSpace>
490 vmat(
"Hcurl::Tet::In::vmat", card, card),
491 work1(
"Hcurl::Tet::In::work", lwork),
492 ipiv(
"Hcurl::Tet::In::ipiv", card);
495 for(ordinal_type i=0; i< card; ++i) {
496 for(ordinal_type j=0; j< card; ++j) {
498 for(ordinal_type k=0; k< cardVecPn; ++k)
506 lapack.GETRF(card, card,
507 vmat.data(), vmat.stride_1(),
508 (ordinal_type*)ipiv.data(),
511 INTREPID2_TEST_FOR_EXCEPTION( info != 0,
513 ">>> ERROR: (Intrepid2::Basis_HCURL_TET_In_FEM) lapack.GETRF returns nonzero info." );
516 vmat.data(), vmat.stride_1(),
517 (ordinal_type*)ipiv.data(),
521 INTREPID2_TEST_FOR_EXCEPTION( info != 0,
523 ">>> ERROR: (Intrepid2::Basis_HCURL_TET_In_FEM) lapack.GETRI returns nonzero info." );
525 for (ordinal_type i=0;i<cardVecPn;++i) {
526 for (ordinal_type j=0;j<card;++j){
528 for(ordinal_type k=0; k< card; ++k)
529 s += U(i,k)*vmat(k,j);
534 this->coeffs_ = Kokkos::create_mirror_view(
typename DT::memory_space(), coeffs);
535 Kokkos::deep_copy(this->coeffs_ , coeffs);
537 this->dofCoords_ = Kokkos::create_mirror_view(
typename DT::memory_space(), dofCoords);
538 Kokkos::deep_copy(this->dofCoords_, dofCoords);
540 this->dofCoeffs_ = Kokkos::create_mirror_view(
typename DT::memory_space(), dofCoeffs);
541 Kokkos::deep_copy(this->dofCoeffs_, dofCoeffs);
547 const ordinal_type posScDim = 0;
548 const ordinal_type posScOrd = 1;
549 const ordinal_type posDfOrd = 2;
555 this->setOrdinalTagData(this->tagToOrdinal_,
558 this->basisCardinality_,
566 template<
typename DT,
typename OT,
typename PT>
569 ordinal_type& perTeamSpaceSize,
570 ordinal_type& perThreadSpaceSize,
572 const EOperator operatorType)
const {
573 perTeamSpaceSize = 0;
574 ordinal_type scalarWorkViewExtent = (operatorType == OPERATOR_VALUE) ? this->basisCardinality_ : 7*this->basisCardinality_;
575 perThreadSpaceSize = scalarWorkViewExtent*get_dimension_scalar(inputPoints)*
sizeof(
typename BasisBase::scalarType);
578 template<
typename DT,
typename OT,
typename PT>
579 KOKKOS_INLINE_FUNCTION
582 OutputViewType outputValues,
583 const PointViewType inputPoints,
584 const EOperator operatorType,
585 const typename Kokkos::TeamPolicy<typename DT::execution_space>::member_type& team_member,
586 const typename DT::execution_space::scratch_memory_space & scratchStorage,
587 const ordinal_type subcellDim,
588 const ordinal_type subcellOrdinal)
const {
590 INTREPID2_TEST_FOR_ABORT( !((subcellDim == -1) && (subcellOrdinal == -1)),
591 ">>> ERROR: (Intrepid2::Basis_HCURL_TET_In_FEM::getValues), The capability of selecting subsets of basis functions has not been implemented yet.");
593 const int numPoints = inputPoints.extent(0);
594 using ScalarType =
typename ScalarTraits<typename PointViewType::value_type>::scalar_type;
595 using WorkViewType = Kokkos::DynRankView< ScalarType,typename DT::execution_space::scratch_memory_space,Kokkos::MemoryTraits<Kokkos::Unmanaged> >;
596 ordinal_type scalarSizePerPoint = (operatorType == OPERATOR_VALUE) ? this->basisCardinality_ : 7*this->basisCardinality_;
597 ordinal_type sizePerPoint = scalarSizePerPoint*get_dimension_scalar(inputPoints);
598 WorkViewType workView(scratchStorage, sizePerPoint*team_member.team_size());
599 using range_type = Kokkos::pair<ordinal_type,ordinal_type>;
601 switch(operatorType) {
603 Kokkos::parallel_for (Kokkos::TeamThreadRange (team_member, numPoints), [=] (ordinal_type& pt) {
604 auto output = Kokkos::subview( outputValues, Kokkos::ALL(), range_type (pt,pt+1), Kokkos::ALL() );
605 const auto input = Kokkos::subview( inputPoints, range_type(pt, pt+1), Kokkos::ALL() );
606 WorkViewType work(workView.data() + sizePerPoint*team_member.team_rank(), sizePerPoint);
611 Kokkos::parallel_for (Kokkos::TeamThreadRange (team_member, numPoints), [=] (ordinal_type& pt) {
612 auto output = Kokkos::subview( outputValues, Kokkos::ALL(), range_type(pt,pt+1), Kokkos::ALL() );
613 const auto input = Kokkos::subview( inputPoints, range_type(pt,pt+1), Kokkos::ALL() );
614 WorkViewType work(workView.data() + sizePerPoint*team_member.team_rank(), sizePerPoint);
615 Impl::Basis_HCURL_TET_In_FEM::Serial<OPERATOR_CURL>::getValues( output, input, work, this->coeffs_ );
619 INTREPID2_TEST_FOR_ABORT(
true,
620 ">>> ERROR (Basis_HCURL_TET_In_FEM): getValues not implemented for this operator");
ScalarTraits< pointValueType >::scalar_type scalarType
Scalar type for point values.
virtual void getCubature(PointViewType cubPoints, weightViewType cubWeights) const override
Returns cubature points and weights (return arrays must be pre-sized/pre-allocated).
Basis_HCURL_TET_In_FEM(const ordinal_type order, const EPointType pointType=POINTTYPE_EQUISPACED)
Constructor.
Kokkos::DynRankView< PointValueType, Kokkos::LayoutStride, DeviceType > PointViewType
View type for input points.
virtual ordinal_type getNumPoints() const override
Returns the number of cubature points.
Header file for the Intrepid2::CubatureDirectTetDefault class.
virtual void getScratchSpaceSize(ordinal_type &perTeamSpaceSize, ordinal_type &perThreadSpaceSize, const PointViewType inputPointsconst, const EOperator operatorType=OPERATOR_VALUE) const override
Return the size of the scratch space, in bytes, needed for using the team-level implementation of get...
virtual void getValues(const ExecutionSpace &space, OutputViewType outputValues, const PointViewType inputPoints, const EOperator operatorType=OPERATOR_VALUE) const override
Evaluation of a FEM basis on a reference cell.
Defines direct integration rules on a tetrahedron.
Kokkos::View< ordinal_type *, typename ExecutionSpace::array_layout, Kokkos::HostSpace > OrdinalTypeArray1DHost
View type for 1d host array.
See Intrepid2::Basis_HCURL_TET_In_FEM.
Header file for the Intrepid2::Basis_HGRAD_TET_Cn_FEM_ORTH class.
static constexpr ordinal_type MaxOrder
The maximum reconstruction order.