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.
cuCtxCreate
1 parent a8b5668 commit 00fccbbCopy full SHA for 00fccbb
cpp/src/arrow/gpu/cuda_test.cc
@@ -92,8 +92,8 @@ class TestCudaBase : public ::testing::Test {
92
Result<CUcontext> NonPrimaryRawContext() {
93
CUcontext ctx;
94
#if CUDA_VERSION >= 13000
95
- RETURN_NOT_OK(StatusFromCuda(cuCtxCreate_v4(&ctx, /*ctxCreateParams=*/nullptr,
96
- /*flags=*/0, device_->handle())));
+ RETURN_NOT_OK(StatusFromCuda(cuCtxCreate(&ctx, /*ctxCreateParams=*/nullptr,
+ /*flags=*/0, device_->handle())));
97
#else
98
RETURN_NOT_OK(StatusFromCuda(cuCtxCreate(&ctx, /*flags=*/0, device_->handle())));
99
#endif
0 commit comments