MLPerf Inference AMD implementations #1
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: MLPerf Inference AMD implementations | |
| on: | |
| schedule: | |
| - cron: "46 11 * * *" #to be adjusted | |
| jobs: | |
| run_amd: | |
| if: github.repository_owner == 'gateoverflow_off' | |
| runs-on: [ self-hosted, linux, x64, GO-spr ] | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: [ "3.12" ] | |
| model: [ "llama2-70b-99.9" ] | |
| steps: | |
| - name: Test MLPerf Inference AMD (build only) ${{ matrix.model }} | |
| run: | | |
| if [ -f "gh_action/bin/deactivate" ]; then source gh_action/bin/deactivate; fi | |
| python3 -m venv gh_action | |
| source gh_action/bin/activate | |
| export MLC_REPOS=$HOME/GH_MLC | |
| pip install --upgrade mlc-scripts | |
| mlc pull repo | |
| mlcr run-mlperf,inference,_all-scenarios,_full,_r4.1-dev --execution_mode=valid --pull_changes=yes --pull_inference_changes=yes --model=${{ matrix.model }} --submitter="MLCommons" --hw_name=IntelSPR.24c --implementation=amd --backend=pytorch --category=datacenter --division=open --scenario=Offline --docker_dt=yes --docker_it=no --docker_mlc_repo=gateoverflow@mlperf-automations --docker_mlc_repo_branch=dev --adr.compiler.tags=gcc --device=rocm --use_dataset_from_host=yes --results_dir=$HOME/gh_action_results --submission_dir=$HOME/gh_action_submissions --clean --docker --quiet --docker_skip_run_cmd=yes | |
| # mlcr push,github,mlperf,inference,submission --repo_url=https://github.com/mlcommons/mlperf_inference_unofficial_submissions_v5.0 --repo_branch=dev --commit_message="Results from GH action on SPR.24c" --quiet --submission_dir=$HOME/gh_action_submissions --hw_name=IntelSPR.24c |