Lines Matching refs:num_nodes
70 const CeedInt num_nodes = CeedIntPow(P_1d, dim); in CeedBasisApplyInterp_Sycl() local
76 const CeedInt u_stride = is_transpose ? num_qpts : num_nodes; in CeedBasisApplyInterp_Sycl()
77 const CeedInt v_stride = is_transpose ? num_nodes : num_qpts; in CeedBasisApplyInterp_Sycl()
173 const CeedInt num_nodes = CeedIntPow(P_1d, dim); in CeedBasisApplyGrad_Sycl() local
179 const CeedInt u_stride = is_transpose ? num_qpts : num_nodes; in CeedBasisApplyGrad_Sycl()
180 const CeedInt v_stride = is_transpose ? num_nodes : num_qpts; in CeedBasisApplyGrad_Sycl()
203 CeedInt pre = is_transpose ? num_qpts : num_nodes; in CeedBasisApplyGrad_Sycl()
341 const CeedInt P = is_transpose ? impl->num_qpts : impl->num_nodes; in CeedBasisApplyNonTensorInterp_Sycl()
342 const CeedInt Q = is_transpose ? impl->num_nodes : impl->num_qpts; in CeedBasisApplyNonTensorInterp_Sycl()
343 const CeedInt stride_0 = is_transpose ? 1 : impl->num_nodes; in CeedBasisApplyNonTensorInterp_Sycl()
344 const CeedInt stride_1 = is_transpose ? impl->num_nodes : 1; in CeedBasisApplyNonTensorInterp_Sycl()
382 const CeedInt P = is_transpose ? impl->num_qpts : impl->num_nodes; in CeedBasisApplyNonTensorGrad_Sycl()
383 const CeedInt Q = is_transpose ? impl->num_nodes : impl->num_qpts; in CeedBasisApplyNonTensorGrad_Sycl()
384 const CeedInt stride_0 = is_transpose ? 1 : impl->num_nodes; in CeedBasisApplyNonTensorGrad_Sycl()
385 const CeedInt stride_1 = is_transpose ? impl->num_nodes : 1; in CeedBasisApplyNonTensorGrad_Sycl()
574 const CeedInt num_nodes = CeedIntPow(P_1d, dim); in CeedBasisCreateTensorH1_Sycl() local
581 impl->num_nodes = num_nodes; in CeedBasisCreateTensorH1_Sycl()
583 impl->buf_len = num_comp * CeedIntMax(num_nodes, num_qpts); in CeedBasisCreateTensorH1_Sycl()
631 int CeedBasisCreateH1_Sycl(CeedElemTopology topo, CeedInt dim, CeedInt num_nodes, CeedInt num_qpts,… in CeedBasisCreateH1_Sycl() argument
646 impl->num_nodes = num_nodes; in CeedBasisCreateH1_Sycl()
660 const CeedInt interp_length = num_qpts * num_nodes; in CeedBasisCreateH1_Sycl()
665 const CeedInt grad_length = num_qpts * num_nodes * dim; in CeedBasisCreateH1_Sycl()