Skip to content

Commit

Permalink
ci(perf): add vector hmmer performance test
Browse files Browse the repository at this point in the history
  • Loading branch information
Anzooooo committed Jan 14, 2025
1 parent 15fbca4 commit 19a7341
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/emu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,10 @@ jobs:
--dramsim3 /nfs/home/share/ci-workloads/DRAMsim3 \
--with-dramsim3 --threads 16 \
--pgo $GITHUB_WORKSPACE/ready-to-run/coremark-2-iteration.bin --llvm-profdata llvm-profdata
- name: SPEC06 Test - hmmer-Vector
run: |
python3 $GITHUB_WORKSPACE/scripts/xiangshan.py --wave-dump $WAVE_HOME --threads 16 --max-instr 5000000 --numa --ci hmmer-Vector 2> perf.log
cat perf.log | sort | tee $PERF_HOME/hmmer-Vector.log
- name: SPEC06 Test - mcf
run: |
python3 $GITHUB_WORKSPACE/scripts/xiangshan.py --wave-dump $WAVE_HOME --threads 16 --max-instr 5000000 --numa --ci mcf --gcpt-restore-bin $GCPT_RESTORE_BIN 2> perf.log
Expand Down
3 changes: 2 additions & 1 deletion scripts/xiangshan.py
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,8 @@ def __get_ci_workloads(self, name):
"lbm": "_140840000000_.gz",
"gromacs": "_275480000000_.gz",
"wrf": "_1916220000000_.gz",
"astar": "_122060000000_.gz"
"astar": "_122060000000_.gz",
"hmmer-Vector": "_6598_0.250135_.zstd"
}
if name in workloads:
return [os.path.join("/nfs/home/share/ci-workloads", name, workloads[name])]
Expand Down

0 comments on commit 19a7341

Please sign in to comment.