MLPerf inference SDXL #66
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
name: MLPerf inference SDXL | |
on: | |
schedule: | |
- cron: "19 17 * * *" | |
jobs: | |
build_reference: | |
if: github.repository_owner == 'gateoverflow' | |
runs-on: [ self-hosted, linux, x64 ] | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [ "3.12" ] | |
backend: [ "pytorch" ] | |
precision: [ "float16" ] | |
steps: | |
- name: Test MLPerf Inference SDXL Reference | |
run: | | |
source gh_action/bin/deactivate || python3 -m venv gh_action | |
source gh_action/bin/activate | |
export MLC_REPOS=$HOME/GH_MLC | |
python3 -m pip install mlc-scripts | |
mlc pull repo | |
mlcr --tags=run-mlperf,inference,_submission,_short --submitter="MLCommons" --pull_changes=yes --pull_inference_changes=yes --docker --model=sdxl --backend=${{ matrix.backend }} --device=cuda --scenario=Offline --test_query_count=1 --precision=${{ matrix.precision }} --quiet --docker_it=no --docker_mlc_repo=gateoverflow@mlperf-automations --adr.compiler.tags=gcc --hw_name=gh_action --docker_dt=yes --results_dir=$HOME/gh_action_results --submission_dir=$HOME/gh_action_submissions --env.MLC_MLPERF_MODEL_SDXL_DOWNLOAD_TO_HOST=yes --clean | |
mlcr --tags=push,github,mlperf,inference,submission --repo_url=https://github.com/mlcommons/mlperf_inference_test_submissions_v5.0 --repo_branch=auto-update --commit_message="Results from self hosted Github actions - NVIDIARTX4090" --quiet --submission_dir=$HOME/gh_action_submissions |