Lines Matching refs:interp_bytes
167 CeedSize interp_bytes; in CeedBasisApplyAtPointsCore_Cuda() local
170 interp_bytes = P_1d * Q_1d * sizeof(CeedScalar); in CeedBasisApplyAtPointsCore_Cuda()
173 CeedCallCuda(ceed, cudaMalloc((void **)&data->d_chebyshev_interp_1d, interp_bytes)); in CeedBasisApplyAtPointsCore_Cuda()
174 …CeedCallCuda(ceed, cudaMemcpy(data->d_chebyshev_interp_1d, chebyshev_interp_1d, interp_bytes, cuda… in CeedBasisApplyAtPointsCore_Cuda()
404 const CeedInt interp_bytes = q_bytes * P_1d; in CeedBasisCreateTensorH1_Cuda() local
415 CeedCallCuda(ceed, cudaMalloc((void **)&data->d_interp_1d, interp_bytes)); in CeedBasisCreateTensorH1_Cuda()
416 …CeedCallCuda(ceed, cudaMemcpy(data->d_interp_1d, interp_1d, interp_bytes, cudaMemcpyHostToDevice)); in CeedBasisCreateTensorH1_Cuda()
417 CeedCallCuda(ceed, cudaMalloc((void **)&data->d_grad_1d, interp_bytes)); in CeedBasisCreateTensorH1_Cuda()
418 CeedCallCuda(ceed, cudaMemcpy(data->d_grad_1d, grad_1d, interp_bytes, cudaMemcpyHostToDevice)); in CeedBasisCreateTensorH1_Cuda()
464 const CeedInt interp_bytes = q_bytes * num_nodes * q_comp_interp; in CeedBasisCreateH1_Cuda() local
466 CeedCallCuda(ceed, cudaMalloc((void **)&data->d_interp, interp_bytes)); in CeedBasisCreateH1_Cuda()
467 CeedCallCuda(ceed, cudaMemcpy(data->d_interp, interp, interp_bytes, cudaMemcpyHostToDevice)); in CeedBasisCreateH1_Cuda()
519 const CeedInt interp_bytes = q_bytes * num_nodes * q_comp_interp; in CeedBasisCreateHdiv_Cuda() local
521 CeedCallCuda(ceed, cudaMalloc((void **)&data->d_interp, interp_bytes)); in CeedBasisCreateHdiv_Cuda()
522 CeedCallCuda(ceed, cudaMemcpy(data->d_interp, interp, interp_bytes, cudaMemcpyHostToDevice)); in CeedBasisCreateHdiv_Cuda()
574 const CeedInt interp_bytes = q_bytes * num_nodes * q_comp_interp; in CeedBasisCreateHcurl_Cuda() local
576 CeedCallCuda(ceed, cudaMalloc((void **)&data->d_interp, interp_bytes)); in CeedBasisCreateHcurl_Cuda()
577 CeedCallCuda(ceed, cudaMemcpy(data->d_interp, interp, interp_bytes, cudaMemcpyHostToDevice)); in CeedBasisCreateHcurl_Cuda()