Lines Matching refs:num_qpts
47 const CeedInt work_group_size = CeedIntMin(impl->num_qpts, max_work_group_size); in CeedBasisApplyInterp_Sycl()
71 const CeedInt num_qpts = CeedIntPow(Q_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()
174 const CeedInt num_qpts = CeedIntPow(Q_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()
183 const CeedInt u_dim_stride = is_transpose ? num_elem * num_qpts * num_comp : 0; in CeedBasisApplyGrad_Sycl()
184 const CeedInt v_dim_stride = is_transpose ? 0 : num_elem * num_qpts * num_comp; 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()
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()
436 const CeedInt num_qpts = impl->num_qpts; in CeedBasisApplyNonTensorWeight_Sycl() local
439 sycl::range<2> kernel_range(num_elem, num_qpts); in CeedBasisApplyNonTensorWeight_Sycl()
448 d_V[i + elem * num_qpts] = q_weight[i]; in CeedBasisApplyNonTensorWeight_Sycl()
575 const CeedInt num_qpts = CeedIntPow(Q_1d, dim); in CeedBasisCreateTensorH1_Sycl() local
582 impl->num_qpts = num_qpts; 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
647 impl->num_qpts = num_qpts; in CeedBasisCreateH1_Sycl()
655 …CeedCallSycl(ceed, impl->d_q_weight = sycl::malloc_device<CeedScalar>(num_qpts, data->sycl_device,… in CeedBasisCreateH1_Sycl()
656 …cl::event copy_weight = data->sycl_queue.copy<CeedScalar>(q_weight, impl->d_q_weight, num_qpts, e); 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()