Skip to content

Commit

Permalink
Merge branch 'mlperf-inference' into mixtral+gha+selfhosted
Browse files Browse the repository at this point in the history
  • Loading branch information
arjunsuresh authored Oct 4, 2024
2 parents 122cea2 + 2b3467d commit 62b609c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/test-mlperf-inference-resnet50.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:
- name: Test MLPerf Inference ResNet50 (Windows)
if: matrix.os == 'windows-latest'
run: |
git config --system core.longpaths true
cm run script --tags=run-mlperf,inference,_submission,_short --submitter="MLCommons" --hw_name=gh_windows --model=resnet50 --adr.loadgen.tags=_from-pip --pip_loadgen=yes --implementation=${{ matrix.implementation }} --backend=${{ matrix.backend }} --device=cpu --scenario=Offline --test_query_count=500 --target_qps=1 -v --quiet
- name: Test MLPerf Inference ResNet50 (Linux/macOS)
if: matrix.os != 'windows-latest'
Expand Down
8 changes: 7 additions & 1 deletion script/push-mlperf-inference-results-to-github/run.bat
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,13 @@ if not defined CM_GIT_REPO_CHECKOUT_PATH (
echo "Error: CM_GIT_REPO_CHECKOUT_PATH is not set."
exit /b 1
)
cd %CM_GIT_REPO_CHECKOUT_PATH%

REM Change directory
cd "%CM_GIT_REPO_CHECKOUT_PATH%" || (
echo "Error: Failed to change directory to %CM_GIT_REPO_CHECKOUT_PATH%"
exit /b 1
)

git pull
git add *

Expand Down

0 comments on commit 62b609c

Please sign in to comment.