Benchmarking report #121
Workflow file for this run
This file contains hidden or 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: Build | |
| on: | |
| [workflow_dispatch, pull_request] | |
| env: | |
| BUILD_TYPE: Release | |
| jobs: | |
| build-ubuntu: | |
| name: Build Ubuntu | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/[email protected] | |
| with: | |
| submodules: recursive | |
| # - name: Install clang-format 19 | |
| # uses: KyleMayes/install-llvm-action@v2 | |
| # with: | |
| # version: "19" | |
| # cached: true | |
| # - name: Check formatting | |
| # working-directory: ${{github.workspace}} | |
| # run: | | |
| # echo "clang-format version:" | |
| # clang-format --version | |
| # chmod +x format.sh | |
| # ./format.sh | |
| # git diff --exit-code | |
| - name: Build Tools | |
| working-directory: ${{github.workspace}}/build | |
| env: | |
| CXX: clang++ | |
| run: | | |
| cmake .. | |
| cmake --build . -j4 | |
| - name: Run tests | |
| working-directory: ${{github.workspace}} | |
| run: | | |
| ./build/tools/run_tests | |
| ./build/tools/benchmodel ./example_models/wavenet.nam | |
| ./build/tools/benchmodel ./example_models/lstm.nam |