Lines Matching refs:build_id
226 const int build_id = rand(); in CeedCompileCore_Cuda() local
243 …std::string filename = std::string("temp/kernel_") + std::to_string(build_id) + std::string("_0_so… in CeedCompileCore_Cuda()
328 …_string(prop.minor) + " --cuda-device-only -emit-llvm -S temp/kernel_" + std::to_string(build_id) + in CeedCompileCore_Cuda()
329 "_0_source.cu -o temp/kernel_" + std::to_string(build_id) + "_1_wrapped.ll "; in CeedCompileCore_Cuda()
332 …CeedCallSystem(ceed, ("chmod 0777 temp/kernel_" + std::to_string(build_id) + "_1_wrapped.ll").c_st… in CeedCompileCore_Cuda()
336 std::to_string(build_id) + in CeedCompileCore_Cuda()
339 std::to_string(build_id) + "_2_linked.ll "; in CeedCompileCore_Cuda()
366 … --print sysroot) -name opt) --passes internalize,inline temp/kernel_" + std::to_string(build_id) + in CeedCompileCore_Cuda()
367 "_2_linked.ll -o temp/kernel_" + std::to_string(build_id) + "_3_opt.bc") in CeedCompileCore_Cuda()
370 …CeedCallSystem(ceed, ("chmod 0777 temp/kernel_" + std::to_string(build_id) + "_2_linked.ll").c_str… in CeedCompileCore_Cuda()
373 …::to_string(prop.major) + std::to_string(prop.minor) + " temp/kernel_" + std::to_string(build_id) + in CeedCompileCore_Cuda()
374 "_3_opt.bc -o temp/kernel_" + std::to_string(build_id) + "_4_final.ptx") in CeedCompileCore_Cuda()
377 …CeedCallSystem(ceed, ("chmod 0777 temp/kernel_" + std::to_string(build_id) + "_4_final.ptx").c_str… in CeedCompileCore_Cuda()
380 ifstream ptxfile("temp/kernel_" + std::to_string(build_id) + "_4_final.ptx"); in CeedCompileCore_Cuda()