Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions mlir/lib/Dialect/GPU/Transforms/SerializeToCubin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,11 @@ SerializeToCubinPass::serializeISA(const std::string &isa) {
CUdevice device;
RETURN_ON_CUDA_ERROR(cuDeviceGet(&device, 0));
CUcontext context;
RETURN_ON_CUDA_ERROR(cuCtxCreate(&context, 0, device));
// Use the primary context.
RETURN_ON_CUDA_ERROR(cuDevicePrimaryCtxRetain(&context, device));
// Push the primary context so that the next CUDA operations
// actually use it.
RETURN_ON_CUDA_ERROR(cuCtxPushCurrent(context));
CUlinkState linkState;

CUjit_option jitOptions[] = {CU_JIT_ERROR_LOG_BUFFER,
Expand Down Expand Up @@ -146,7 +150,10 @@ SerializeToCubinPass::serializeISA(const std::string &isa) {

// This will also destroy the cubin data.
RETURN_ON_CUDA_ERROR(cuLinkDestroy(linkState));
RETURN_ON_CUDA_ERROR(cuCtxDestroy(context));
// Pop and release the primary context.
CUcontext poppedContext;
RETURN_ON_CUDA_ERROR(cuCtxPopCurrent(&poppedContext));
RETURN_ON_CUDA_ERROR(cuDevicePrimaryCtxRelease(device));

return result;
}
Expand Down