Remove charts #2
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 and benchmark other | |
| #on: [push] | |
| jobs: | |
| build-and-bench-self-hosted: | |
| runs-on: self-hosted | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v3 | |
| with: | |
| clean: false | |
| - name: OpenCL Info | |
| run: clinfo | |
| - name: Update dependencies | |
| run: | | |
| git submodule update --init --recursive | |
| - name: Build Spla | |
| run: python3 scripts/build_spla.py | |
| - name: Build LAGraph | |
| run: python3 scripts/build_lagraph.py | |
| - name: Build GraphBLAST | |
| run: python3 scripts/build_graphblast.py | |
| - name: Download matrices | |
| run: python3 scripts/download_matrices.py | |
| - name: BFS Benchmark. LAGraph, GraphBLAST, SPLA | |
| run: python3 scripts/benchmark.py --tool lagraph graphblast spla --algo bfs --platform 0 | |
| - name: Archive production artifacts | |
| uses: actions/upload-artifact@v3 | |
| with: | |
| name: benchmark-data | |
| path: artifacts/benchmark_result.csv |