Support for platform details in submission generation #189
Workflow file for this run
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
# This workflow will test the submission generation capability of CM f | |
name: CM based Submission Generation | |
on: | |
pull_request: | |
branches: [ "main", "dev", "mlperf-inference" ] | |
paths: | |
- '.github/workflows/test-cm-based-submission-generation.yml' | |
- '**' | |
- '!**.md' | |
jobs: | |
submission_generation: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
python-version: [ "3.12" ] | |
division: ["closed", "open", "closed-open"] | |
category: ["datacenter", "edge"] | |
case: ["closed", "closed-no-compliance", "closed-power", "closed-failed-power-logs", "case-3", "case-7", "case-8"] | |
action: ["run", "docker"] | |
exclude: | |
- os: macos-latest | |
- os: windows-latest | |
- category: "edge" | |
steps: | |
- uses: actions/checkout@v4 | |
- 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 cmind | |
cm pull repo --url=${{ github.event.pull_request.head.repo.html_url }} --checkout=${{ github.event.pull_request.head.ref }} | |
- name: Pull repo where test cases are uploaded | |
run: | | |
git clone -b submission-generation-tests https://github.com/mlcommons/inference.git submission_generation_tests | |
- name: Run Submission Generation - ${{ matrix.case }} ${{ matrix.action }} ${{ matrix.category }} ${{ matrix.division }} | |
run: | | |
if [ "${{ matrix.case }}" == "case-3" ]; then | |
description="Submission generation (model_mapping.json not present but model name matches with official one)" | |
elif [ "${{ matrix.case }}" == "case-7" ]; then | |
description="Submission generation (sut_info.json incomplete, SUT folder name in required format)" | |
elif [ "${{ matrix.case }}" == "case-8" ]; then | |
extra_run_args=" --category=datacenter" | |
description="Submission generation (system_meta.json not found in results folder)" | |
elif [ "${{ matrix.case }}" == "closed" ]; then | |
extra_run_args=" --env.CM_MLPERF_SUBMISSION_CHECKER_EXTRA_ARGS="--skip-extra-accuracy-files-check"" | |
description="Test submission - contains closed edge and datacenter" | |
elif [ "${{ matrix.case }}" == "closed-no-compliance" ]; then | |
extra_run_args=" --env.CM_MLPERF_SUBMISSION_CHECKER_EXTRA_ARGS="--skip-extra-accuracy-files-check"" | |
description="Test submission - contains closed edge and datacenter with no compliance tests" | |
elif [ "${{ matrix.case }}" == "closed-power" ]; then | |
extra_run_args=" --env.CM_MLPERF_SUBMISSION_CHECKER_EXTRA_ARGS="--skip-extra-accuracy-files-check"" | |
description="Test submission - contains closed-power edge and datacenter results" | |
elif [ "${{ matrix.case }}" == "closed-failed-power-logs" ]; then | |
extra_run_args=" --env.CM_MLPERF_SUBMISSION_CHECKER_EXTRA_ARGS="--skip-extra-accuracy-files-check"" | |
description="Test submission - contains closed-power edge and datacenter results with failed power logs" | |
fi | |
# Dynamically set the log group to simulate a dynamic step name | |
echo "::group::$description" | |
cm ${{ matrix.action }} script --tags=generate,inference,submission --adr.submission-checker-src.tags=_branch.dev --clean --preprocess_submission=yes --results_dir=$PWD/submission_generation_tests/${{ matrix.case }}/ --run-checker --submitter=MLCommons --tar=yes --env.CM_TAR_OUTFILE=submission.tar.gz --division=${{ matrix.division }} --env.CM_DETERMINE_MEMORY_CONFIGURATION=yes --quiet $extra_run_args | |
echo "::endgroup::" | |