Lines Matching refs:result
32 …nvrtcResult result = static_cast<nvrtcResult>(x); …
33 …if (result != NVRTC_SUCCESS) return CeedError((ceed), CEED_ERROR_BACKEND, nvrtcGetErrorString(resu…
179 …nvrtcResult result = nvrtcCompileProgram(prog, num_opts + num_jit_source_dirs + num_jit_defines, o… in CeedCompileCore_Cuda() local
188 *is_compile_good = result == NVRTC_SUCCESS; in CeedCompileCore_Cuda()
197 return CeedError(ceed, CEED_ERROR_BACKEND, "%s\n%s", nvrtcGetErrorString(result), log); in CeedCompileCore_Cuda()
201 CeedDebug(ceed, "Error: %s\nCompile log:\n%s\n", nvrtcGetErrorString(result), log); in CeedCompileCore_Cuda()
388 int result = cuModuleLoadData(module, ptx_data.c_str()); in CeedCompileCore_Cuda() local
390 *is_compile_good = result == 0; in CeedCompileCore_Cuda()
477 …CUresult result = cuLaunchKernel(kernel, grid_size, 1, 1, block_size_x, block_size_y, block_size_z… in CeedRunKernelDimSharedCore_Cuda() local
479 if (result == CUDA_ERROR_LAUNCH_OUT_OF_RESOURCES) { in CeedRunKernelDimSharedCore_Cuda()
498 } else CeedChk_Cu(ceed, result); in CeedRunKernelDimSharedCore_Cuda()