Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions numba_cuda/numba/cuda/tests/benchmarks/test_kernel_launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,18 @@

import string
from numba import cuda
from numba.cuda.core import config
import numpy as np
import pytest
from pytest import param


pytestmark = pytest.mark.skipif(
condition=config.ENABLE_CUDASIM,
reason="no reason to run benchmarks in the simulator",
)


@pytest.mark.parametrize(
"array_func",
[
Expand Down
Loading