Skip to content

Commit abd26e8

Browse files
authored
Merge pull request #10809 from rakhmets/topic/skip-test-mkey-pack-mempool
GTEST/UCT/CUDA: Skip test_cuda_ipc_md.mkey_pack_mempool.
2 parents 7debbea + 4583677 commit abd26e8

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

test/gtest/uct/cuda/test_cuda_ipc_md.cc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,15 @@ UCS_TEST_P(test_cuda_ipc_md, mkey_pack_legacy)
193193
UCS_TEST_P(test_cuda_ipc_md, mkey_pack_mempool)
194194
{
195195
#if HAVE_CUDA_FABRIC
196+
int driver_version;
197+
EXPECT_EQ(CUDA_SUCCESS, cuDriverGetVersion(&driver_version));
198+
if (driver_version == 13000) {
199+
UCS_TEST_SKIP_R("in CUDA 13.0, calling cuMemPoolDestroy results in a "
200+
"segmentation fault if "
201+
"cuMemPoolExportToShareableHandle returned an error "
202+
"before that");
203+
}
204+
196205
size_t size = 4 * UCS_MBYTE;
197206
CUdeviceptr ptr;
198207
CUmemoryPool mpool;

0 commit comments

Comments
 (0)