forked from mlcommons/cm4mlperf-inference
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fe5b4b8
commit 6807964
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | ||
|
||
name: MLPerf inference results updater | ||
|
||
|
||
on: | ||
push: | ||
branches: [ "main", "mlperf-inference-results-scc24" ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
env: | ||
CM_INDEX: "on" | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: [ "3.10" ] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Install dependencies | ||
run: | | ||
python3 -m pip install cm4mlops | ||
- name: Run MLPerf Inference Submission Checker and generate results summary | ||
run: | | ||
cm run script --tags=run,mlperf,inference,submission,checker,_short-run --src_version=v4.1 --quiet --extra_args=" --skip-extra-files-in-root-check" --submission_dir=./ > >(tee -a out.txt) 2> >(tee -a checker_log.txt >&2) | ||
cmr "convert from-csv to-md" --csv_file=summary.csv --md_file=README.md | ||
USER=admin | ||
[email protected] | ||
git config --global user.name "$USER" | ||
git config --global user.email "$EMAIL" | ||
git remote set-url origin https://x-access-token:${{ secrets.ACCESS_TOKEN }}@github.com/${{ github.repository }} | ||
git add summary* | ||
echo -e 'Please download [summary.xlsx](summary.xlsx) to view the most recent results. \n ```' > temp | ||
tail -n 16 checker_log.txt >> temp | ||
echo -e '\n```\n' >> temp | ||
cat temp | cat - README.md > temp1 | ||
head -n 100 temp1 > README.md | ||
git add README.md | ||
git diff-index --quiet HEAD || (git commit -am "Updated results summary" && git push origin) |