isnan should only depend on value to match control flow of primal #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linux GPU | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: [self-hosted, Linux, GPU] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: gpu info | |
run: nvidia-smi | |
- name: nvidia compiler info | |
run: nvcc --version | |
- name: setup cmake | |
run: cmake --preset linux-gcc-debug-sanitizer-ub-coverage | |
- name: build | |
run: cmake --build --preset debug | |
- name: run ctest | |
run: ctest --preset debug | |
- name: run checks | |
run: | | |
./tools/memcheck.sh ./build/tests/tests | |
./tools/racecheck.sh ./build/tests/tests | |
./tools/synccheck.sh ./build/tests/tests |