From 5b5ed3ada9c5c069ad19b64b4a566cc1b4240b74 Mon Sep 17 00:00:00 2001 From: Leo Fang Date: Tue, 9 Feb 2021 01:08:05 -0500 Subject: [PATCH] fix typo --- tests/cupy_tests/cuda_tests/test_memory.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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):