forked from EgorOrachyov/graph-bench
-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (30 loc) · 1015 Bytes
/
bench_others.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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