Skip to content

Commit 11cda63

Browse files
committed
chore(deps): move to self-contained pixi.toml to avoid mixed-pypi-pixi environments
1 parent b4df85c commit 11cda63

File tree

4 files changed

+3166
-1983
lines changed

4 files changed

+3166
-1983
lines changed

numba_cuda/numba/cuda/tests/benchmarks/test_kernel_launch.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,18 @@
33

44
import string
55
from numba import cuda
6+
from numba.cuda.core import config
67
import numpy as np
78
import pytest
89
from pytest import param
910

1011

12+
pytestmark = pytest.mark.skipif(
13+
condition=config.ENABLE_CUDASIM,
14+
reason="no reason to run benchmarks in the simulator",
15+
)
16+
17+
1118
@pytest.mark.parametrize(
1219
"array_func",
1320
[

0 commit comments

Comments
 (0)