Searched refs:symmDims (Results 1 – 6 of 6) sorted by relevance
/dports/math/mfem/mfem-4.3/fem/ |
H A D | bilininteg_vectorfe.cpp | 741 const int symmDims = (dims * (dims + 1)) / 2; // 1x1: 1, 2x2: 3, 3x3: 6 in AssemblePA() local 780 pa_data.SetSize((symmetric ? symmDims : MQfullDim) * nq * ne, in AssemblePA() 1069 const int symmDims = (dims * (dims + 1)) / 2; // 1x1: 1, 2x2: 3, 3x3: 6 in AssemblePA() local 1085 pa_data.SetSize(symmDims * nq * ne, Device::GetMemoryType()); in AssemblePA()
|
H A D | bilininteg_vecdiffusion.cpp | 156 const int symmDims = (dims * (dims + 1)) / 2; // 1x1: 1, 2x2: 3, 3x3: 6 in AssemblePA() local 165 pa_data.SetSize(symmDims * nq * ne, Device::GetDeviceMemoryType()); in AssemblePA()
|
H A D | bilininteg_diffusion_pa.cpp | 372 const int symmDims = (dims * (dims + 1)) / 2; // 1x1: 1, 2x2: 3, 3x3: 6 in AssemblePA() local 414 coeffDim = symmDims; in AssemblePA() 415 coeff.SetSize(symmDims * nq * ne); in AssemblePA() 420 auto C = Reshape(coeff.HostWrite(), symmDims, nq, ne); in AssemblePA() 493 pa_data.SetSize((symmetric ? symmDims : MQfullDim) * nq * ne, mt); in AssemblePA()
|
H A D | bilininteg_convection_pa.cpp | 785 const int symmDims = dims; in AssemblePA() local 793 pa_data.SetSize(symmDims * nq * ne, mt); in AssemblePA()
|
H A D | bilininteg_dgtrace_pa.cpp | 148 const int symmDims = 4; in SetupPA() local 158 pa_data.SetSize(symmDims * nq * nf, Device::GetMemoryType()); in SetupPA()
|
H A D | bilininteg_hcurl.cpp | 959 const int symmDims = (dims * (dims + 1)) / 2; // 1x1: 1, 2x2: 3, 3x3: 6 in AssemblePA() local 960 const int ndata = (dim == 2) ? 1 : (symmetric ? symmDims : MQfullDim); in AssemblePA() 2899 const int symmDims = (dims * (dims + 1)) / 2; // 1x1: 1, 2x2: 3, 3x3: 6 in AssemblePA() local 2902 pa_data.SetSize(symmDims * nq * ne, Device::GetMemoryType()); in AssemblePA()
|