Lines Matching refs:opts
77 const char **opts; in CeedCompileCore_Cuda() local
110 CeedCallBackend(CeedCalloc(num_opts, &opts)); in CeedCompileCore_Cuda()
111 opts[0] = "-default-device"; in CeedCompileCore_Cuda()
125 opts[1] = arch_arg.c_str(); in CeedCompileCore_Cuda()
126 opts[2] = "-Dint32_t=int"; in CeedCompileCore_Cuda()
127 opts[3] = "-DCEED_RUNNING_JIT_PASS=1"; in CeedCompileCore_Cuda()
133 CeedCallBackend(CeedRealloc(num_opts + num_jit_source_dirs, &opts)); in CeedCompileCore_Cuda()
138 … CeedCallBackend(CeedStringAllocCopy(include_dir_arg.str().c_str(), (char **)&opts[num_opts + i])); in CeedCompileCore_Cuda()
147 CeedCallBackend(CeedRealloc(num_opts + num_jit_source_dirs + num_jit_defines, &opts)); in CeedCompileCore_Cuda()
152 …CeedCallBackend(CeedStringAllocCopy(define_arg.str().c_str(), (char **)&opts[num_opts + num_jit_so… in CeedCompileCore_Cuda()
172 CeedDebug(ceed, "Option %d: %s", i, opts[i]); in CeedCompileCore_Cuda()
179 …cResult result = nvrtcCompileProgram(prog, num_opts + num_jit_source_dirs + num_jit_defines, opts); in CeedCompileCore_Cuda()
182 CeedCallBackend(CeedFree(&opts[num_opts + i])); in CeedCompileCore_Cuda()
185 CeedCallBackend(CeedFree(&opts[num_opts + num_jit_source_dirs + i])); in CeedCompileCore_Cuda()
187 CeedCallBackend(CeedFree(&opts)); in CeedCompileCore_Cuda()
330 command += opts[4]; in CeedCompileCore_Cuda()