Lines Matching refs:P_1d
39 static int ComputeBasisThreadBlockSizes(const CeedInt dim, const CeedInt P_1d, const CeedInt Q_1d, … in ComputeBasisThreadBlockSizes() argument
44 const CeedInt thread_1d = CeedIntMax(P_1d, Q_1d); in ComputeBasisThreadBlockSizes()
118 CeedInt P_1d, Q_1d; in CeedBasisApplyTensorCore_Hip_shared() local
122 CeedCallBackend(CeedBasisGetNumNodes1D(basis, &P_1d)); in CeedBasisApplyTensorCore_Hip_shared()
124 CeedInt thread_1d = CeedIntMax(Q_1d, P_1d); in CeedBasisApplyTensorCore_Hip_shared()
165 CeedInt P_1d, Q_1d; in CeedBasisApplyTensorCore_Hip_shared() local
169 CeedCallBackend(CeedBasisGetNumNodes1D(basis, &P_1d)); in CeedBasisApplyTensorCore_Hip_shared()
171 CeedInt thread_1d = CeedIntMax(Q_1d, P_1d); in CeedBasisApplyTensorCore_Hip_shared()
333 CeedInt P_1d; in CeedBasisApplyAtPointsCore_Hip_shared() local
335 CeedCallBackend(CeedBasisGetNumNodes1D(basis, &P_1d)); in CeedBasisApplyAtPointsCore_Hip_shared()
343 interp_bytes = P_1d * Q_1d * sizeof(CeedScalar); in CeedBasisApplyAtPointsCore_Hip_shared()
344 CeedCallBackend(CeedCalloc(P_1d * Q_1d, &chebyshev_interp_1d)); in CeedBasisApplyAtPointsCore_Hip_shared()
357 …asis_kernel_source, &data->moduleAtPoints, 9, "BASIS_Q_1D", Q_1d, "BASIS_P_1D", P_1d, "BASIS_T_1D", in CeedBasisApplyAtPointsCore_Hip_shared()
358 …CeedIntMax(Q_1d, P_1d), "BASIS_DIM", dim, "BASIS_NUM_COMP", num_comp, "BASIS_NUM_NODES", CeedIntPo… in CeedBasisApplyAtPointsCore_Hip_shared()
382 CeedInt P_1d, Q_1d; in CeedBasisApplyAtPointsCore_Hip_shared() local
385 CeedCallBackend(CeedBasisGetNumNodes1D(basis, &P_1d)); in CeedBasisApplyAtPointsCore_Hip_shared()
387 CeedInt thread_1d = CeedIntMax(Q_1d, P_1d); in CeedBasisApplyAtPointsCore_Hip_shared()
430 CeedInt P_1d, Q_1d; in CeedBasisApplyAtPointsCore_Hip_shared() local
433 CeedCallBackend(CeedBasisGetNumNodes1D(basis, &P_1d)); in CeedBasisApplyAtPointsCore_Hip_shared()
435 CeedInt thread_1d = CeedIntMax(Q_1d, P_1d); in CeedBasisApplyAtPointsCore_Hip_shared()
655 int CeedBasisCreateTensorH1_Hip_shared(CeedInt dim, CeedInt P_1d, CeedInt Q_1d, const CeedScalar *i… in CeedBasisCreateTensorH1_Hip_shared() argument
660 const CeedInt interp_bytes = q_bytes * P_1d; in CeedBasisCreateTensorH1_Hip_shared()
678 bool has_collocated_grad = dim == 3 && Q_1d >= P_1d; in CeedBasisCreateTensorH1_Hip_shared()
692 CeedCallBackend(ComputeBasisThreadBlockSizes(dim, P_1d, Q_1d, num_comp, data->block_sizes)); in CeedBasisCreateTensorH1_Hip_shared()
698 …ceed, basis_kernel_source, &data->module, 11, "BASIS_Q_1D", Q_1d, "BASIS_P_1D", P_1d, "BASIS_T_1D", in CeedBasisCreateTensorH1_Hip_shared()
699 …CeedIntMax(Q_1d, P_1d), "BASIS_DIM", dim, "BASIS_NUM_COMP", num_comp, "BASIS_NUM_NODES", CeedIntPo… in CeedBasisCreateTensorH1_Hip_shared()