We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16f70cc commit 557367cCopy full SHA for 557367c
README.md
@@ -37,12 +37,19 @@ they are compiled for the appropriate compute capability.
37
```
38
cd testing
39
# Optionally, build test binaries and point to their location for the test suite
40
-make
+make -j $(nproc)
41
export NUMBA_CUDA_TEST_BIN_DIR=`pwd`
42
# Execute tests
43
pytest -n auto -v
44
45
46
+Alternatively, you can use [pixi](https://pixi.sh/latest/installation/) to wrap all of that up for you:
47
+
48
+```
49
+# run tests against CUDA 13
50
+pixi run -e cu13 test -n auto -v
51
52
53
54
Testing should discover the `numba.cuda` module from the `numba_cuda` package. You
55
can check where `numba.cuda` files are being located by running
0 commit comments