diff --git a/tests/cupy_tests/cuda_tests/test_memory.py b/tests/cupy_tests/cuda_tests/test_memory.py index 0a8d9657de8..9bb8b16e9cf 100644 --- a/tests/cupy_tests/cuda_tests/test_memory.py +++ b/tests/cupy_tests/cuda_tests/test_memory.py @@ -908,9 +908,9 @@ def test_stream5(self): @testing.gpu -@pytest.mark.skipIf(cupy.cuda.runtime.is_hip, +@pytest.mark.skipif(cupy.cuda.runtime.is_hip, reason='HIP does not support async allocator') -@pytest.mark.skipIf(cupy.cuda.driver.get_build_version() < 11020, +@pytest.mark.skipif(cupy.cuda.driver.get_build_version() < 11020, reason='malloc_async is supported since CUDA 11.2') class TestMemoryAsyncPool(unittest.TestCase):