add heston kernel alterations #40
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: WSL GPU | |
on: | |
push: | |
branches: '*' | |
pull_request: | |
branches: '*' | |
jobs: | |
build: | |
runs-on: [self-hosted, Linux, WSL, GPU] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Display the path | |
run: echo $PATH | |
- 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: upload coverage reports to codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: neilkichler/cumccormick | |
- name: run checks | |
run: | | |
./tools/memcheck.sh ./build/tests/tests | |
./tools/racecheck.sh ./build/tests/tests | |
./tools/synccheck.sh ./build/tests/tests |