Do fp16 for sdpa_bench. #85
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: ubsan-unit-tests | |
on: | |
push: | |
branches: | |
- unstable | |
jobs: | |
build: | |
runs-on: rtx6000-4x | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: configure & build | |
run: | | |
cd lib && ./configure && cd .. | |
make -j 64 -C lib ubsan | |
make -j 64 -C bin ubsan | |
make -j 64 -C bin/nnc ubsan | |
make -j 64 -C bin/cuda ubsan | |
make -j 64 -C test ubsan | |
- name: tests | |
run: | | |
make -C test test |