We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39c865e commit 60f974cCopy full SHA for 60f974c
cpp/src/arrow/gpu/cuda_test.cc
@@ -91,7 +91,8 @@ class TestCudaBase : public ::testing::Test {
91
92
Result<CUcontext> NonPrimaryRawContext() {
93
CUcontext ctx;
94
- RETURN_NOT_OK(StatusFromCuda(cuCtxCreate(&ctx, /*flags=*/0, device_->handle())));
+ RETURN_NOT_OK(StatusFromCuda(cuCtxCreate_v4(&ctx, /*ctxCreateParams=*/nullptr,
95
+ /*flags=*/0, device_->handle())));
96
non_primary_contexts_.push_back(ctx);
97
return ctx;
98
}
0 commit comments