Lines Matching refs:CeedCallCuda

393     CeedCallCuda(ceed, cuModuleUnload(impl->module));  in CeedElemRestrictionDestroy_Cuda()
396 CeedCallCuda(ceed, cudaFree((CeedInt *)impl->d_offsets_owned)); in CeedElemRestrictionDestroy_Cuda()
397 CeedCallCuda(ceed, cudaFree((CeedInt *)impl->d_t_offsets)); in CeedElemRestrictionDestroy_Cuda()
398 CeedCallCuda(ceed, cudaFree((CeedInt *)impl->d_t_indices)); in CeedElemRestrictionDestroy_Cuda()
399 CeedCallCuda(ceed, cudaFree((CeedInt *)impl->d_l_vec_indices)); in CeedElemRestrictionDestroy_Cuda()
401 CeedCallCuda(ceed, cudaFree((bool *)impl->d_orients_owned)); in CeedElemRestrictionDestroy_Cuda()
403 CeedCallCuda(ceed, cudaFree((CeedInt8 *)impl->d_curl_orients_owned)); in CeedElemRestrictionDestroy_Cuda()
405 CeedCallCuda(ceed, cudaFree((CeedInt *)impl->d_offsets_at_points_owned)); in CeedElemRestrictionDestroy_Cuda()
407 CeedCallCuda(ceed, cudaFree((CeedInt *)impl->d_points_per_elem_owned)); in CeedElemRestrictionDestroy_Cuda()
477 CeedCallCuda(ceed, cudaMalloc((void **)&impl->d_l_vec_indices, num_nodes * sizeof(CeedInt))); in CeedElemRestrictionOffset_Cuda()
478CeedCallCuda(ceed, cudaMemcpy((CeedInt *)impl->d_l_vec_indices, l_vec_indices, num_nodes * sizeof(… in CeedElemRestrictionOffset_Cuda()
480 CeedCallCuda(ceed, cudaMalloc((void **)&impl->d_t_offsets, size_offsets * sizeof(CeedInt))); in CeedElemRestrictionOffset_Cuda()
481CeedCallCuda(ceed, cudaMemcpy((CeedInt *)impl->d_t_offsets, t_offsets, size_offsets * sizeof(CeedI… in CeedElemRestrictionOffset_Cuda()
483 CeedCallCuda(ceed, cudaMalloc((void **)&impl->d_t_indices, size_indices * sizeof(CeedInt))); in CeedElemRestrictionOffset_Cuda()
484CeedCallCuda(ceed, cudaMemcpy((CeedInt *)impl->d_t_indices, t_indices, size_indices * sizeof(CeedI… in CeedElemRestrictionOffset_Cuda()
569CeedCallCuda(ceed, cudaMalloc((void **)&impl->d_offsets_at_points_owned, at_points_size * sizeof(C… in CeedElemRestrictionCreate_Cuda()
570CeedCallCuda(ceed, cudaMemcpy((CeedInt **)impl->d_offsets_at_points_owned, impl->h_offsets_at_poin… in CeedElemRestrictionCreate_Cuda()
582CeedCallCuda(ceed, cudaMalloc((void **)&impl->d_points_per_elem_owned, num_elem * sizeof(CeedInt))… in CeedElemRestrictionCreate_Cuda()
583 CeedCallCuda(ceed, in CeedElemRestrictionCreate_Cuda()
593 CeedCallCuda(ceed, cudaMalloc((void **)&impl->d_offsets_owned, size * sizeof(CeedInt))); in CeedElemRestrictionCreate_Cuda()
594CeedCallCuda(ceed, cudaMemcpy((CeedInt *)impl->d_offsets_owned, impl->h_offsets, size * sizeof(Cee… in CeedElemRestrictionCreate_Cuda()
602CeedCallCuda(ceed, cudaMemcpy((CeedInt *)impl->h_offsets_owned, impl->d_offsets, size * sizeof(Cee… in CeedElemRestrictionCreate_Cuda()
613 CeedCallCuda(ceed, cudaMalloc((void **)&impl->d_orients_owned, size * sizeof(bool))); in CeedElemRestrictionCreate_Cuda()
614CeedCallCuda(ceed, cudaMemcpy((bool *)impl->d_orients_owned, impl->h_orients, size * sizeof(bool),… in CeedElemRestrictionCreate_Cuda()
621CeedCallCuda(ceed, cudaMemcpy((bool *)impl->h_orients_owned, impl->d_orients, size * sizeof(bool),… in CeedElemRestrictionCreate_Cuda()
630CeedCallCuda(ceed, cudaMalloc((void **)&impl->d_curl_orients_owned, 3 * size * sizeof(CeedInt8))); in CeedElemRestrictionCreate_Cuda()
631 CeedCallCuda(ceed, in CeedElemRestrictionCreate_Cuda()
639 CeedCallCuda(ceed, in CeedElemRestrictionCreate_Cuda()