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
1 change: 1 addition & 0 deletions .github/workflows/ci-new.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,7 @@ jobs:
matrix_filter: map(select(.ARCH == "amd64" and (.CUDA_VER | split(".") | .[0] | tonumber == 12))) | group_by(.CUDA_VER|split(".")|map(tonumber)|.[0]) | map(max_by([(.PY_VER|split(".")|map(tonumber)), (.CUDA_VER|split(".")|map(tonumber))]))

test-thirdparty-nvmath:
if: ${{ github.ref_name == 'main' }}
needs:
- build-linux-64
- compute-matrix
Expand Down
2 changes: 1 addition & 1 deletion ci/test_thirdparty_nvmath.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ pushd tests
# Required for nvmath-python to locate pip-install MathDx
export SYS_PREFIX=`python -c "import sys; print(sys.prefix)"`
export MATHDX_HOME=${SYS_PREFIX}/lib/python3.13/site-packages/nvidia/mathdx
python -m pytest nvmath_tests/device --tb=native -x
python -m pytest -n auto -k "not (perf or benchmark)" nvmath_tests/device --tb=native -x

popd
popd
Loading