Lines Matching refs:post
105 CeedInt post = 1; in CeedBasisApplyInterp_Sycl() local
118 const CeedInt writeLen = pre * post * Q; in CeedBasisApplyInterp_Sycl()
120 const CeedInt c = k % post; in CeedBasisApplyInterp_Sycl()
121 const CeedInt j = (k / post) % Q; in CeedBasisApplyInterp_Sycl()
122 const CeedInt a = k / (post * Q); in CeedBasisApplyInterp_Sycl()
126 vk += s_interp_1d[j * stride_0 + b * stride_1] * in[(a * P + b) * post + c]; in CeedBasisApplyInterp_Sycl()
130 post *= Q; in CeedBasisApplyInterp_Sycl()
204 CeedInt post = 1; in CeedBasisApplyGrad_Sycl() local
220 const CeedInt writeLen = pre * post * Q; in CeedBasisApplyGrad_Sycl()
222 const CeedInt c = k % post; in CeedBasisApplyGrad_Sycl()
223 const CeedInt j = (k / post) % Q; in CeedBasisApplyGrad_Sycl()
224 const CeedInt a = k / (post * Q); in CeedBasisApplyGrad_Sycl()
227 …or (CeedInt b = 0; b < P; b++) v_k += op[j * stride_0 + b * stride_1] * in[(a * P + b) * post + c]; in CeedBasisApplyGrad_Sycl()
233 post *= Q; in CeedBasisApplyGrad_Sycl()