Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
leofang committed Feb 9, 2021
1 parent b05f5a8 commit 5b5ed3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/cupy_tests/cuda_tests/test_memory.py
Expand Up @@ -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):

Expand Down

0 comments on commit 5b5ed3a

Please sign in to comment.