21namespace quadrature_interpolator
27void TensorDerivatives<QVectorLayout::byVDIM>(
const int NE,
29 const DofToQuad &maps,
33 if (NE == 0) {
return; }
34 const int dim = maps.FE->GetDim();
35 const int D1D = maps.ndof;
36 const int Q1D = maps.nqpt;
37 const real_t *B = maps.B.Read();
38 const real_t *G = maps.G.Read();
40 const real_t *X = e_vec.Read();
44 constexpr bool P =
false;
46 const int id = (vdim<<8) | (D1D<<4) | Q1D;
50 return Derivatives1D<L,P>(NE,G,J,X,Y,
dim,vdim,D1D,Q1D);
56 case 0x134:
return Derivatives2D<L,P,1,3,4,8>(NE,B,G,J,X,Y);
57 case 0x146:
return Derivatives2D<L,P,1,4,6,4>(NE,B,G,J,X,Y);
58 case 0x158:
return Derivatives2D<L,P,1,5,8,2>(NE,B,G,J,X,Y);
60 case 0x234:
return Derivatives2D<L,P,2,3,4,8>(NE,B,G,J,X,Y);
61 case 0x246:
return Derivatives2D<L,P,2,4,6,4>(NE,B,G,J,X,Y);
62 case 0x258:
return Derivatives2D<L,P,2,5,8,2>(NE,B,G,J,X,Y);
67 MFEM_VERIFY(D1D <= MD,
"Orders higher than " << MD-1
68 <<
" are not supported!");
69 MFEM_VERIFY(Q1D <= MQ,
"Quadrature rules with more than "
70 << MQ <<
" 1D points are not supported!");
71 Derivatives2D<L,P>(NE,B,G,J,X,Y,
dim,vdim,D1D,Q1D);
80 case 0x134:
return Derivatives3D<L,P,1,3,4>(NE,B,G,J,X,Y);
81 case 0x146:
return Derivatives3D<L,P,1,4,6>(NE,B,G,J,X,Y);
82 case 0x158:
return Derivatives3D<L,P,1,5,8>(NE,B,G,J,X,Y);
84 case 0x334:
return Derivatives3D<L,P,3,3,4>(NE,B,G,J,X,Y);
85 case 0x346:
return Derivatives3D<L,P,3,4,6>(NE,B,G,J,X,Y);
86 case 0x358:
return Derivatives3D<L,P,3,5,8>(NE,B,G,J,X,Y);
91 MFEM_VERIFY(D1D <= MD,
"Orders higher than " << MD-1
92 <<
" are not supported!");
93 MFEM_VERIFY(Q1D <= MQ,
"Quadrature rules with more than "
94 << MQ <<
" 1D points are not supported!");
95 Derivatives3D<L,P>(NE,B,G,J,X,Y,vdim,D1D,Q1D);
100 mfem::out <<
"Unknown kernel 0x" << std::hex <<
id << std::endl;
101 MFEM_ABORT(
"Kernel not supported yet");
OutStream out(std::cout)
Global stream used by the library for standard output. Initially it uses the same std::streambuf as s...
QVectorLayout
Type describing possible layouts for Q-vectors.
@ byVDIM
VDIM x NQPT x NE (values) / VDIM x DIM x NQPT x NE (grads)
static const DeviceDofQuadLimits & Get()
Return a const reference to the DeviceDofQuadLimits singleton.
int MAX_INTERP_1D
Maximum number of points for use in QuadratureInterpolator.
int MAX_D1D
Maximum number of 1D nodal points.
int MAX_Q1D
Maximum number of 1D quadrature points.