Skip to content

Commit 18779d3

Browse files
authored
Merge pull request #745 from mlcommons/dev
Merge Dev
2 parents 9ab2bdc + 7cfe24d commit 18779d3

File tree

12 files changed

+631
-334
lines changed

12 files changed

+631
-334
lines changed

.github/workflows/test-mlperf-inference-mlcommons-cpp-resnet50.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ on:
99
- '!**.md'
1010

1111
jobs:
12-
build:
12+
run-mlperf-inference-resnet50-cpp:
1313
name: MLPerf inference MLCommons C++ ResNet50
14+
if: github.repository_owner == 'mlcommons'
1415
runs-on: ${{ matrix.os }}
1516
strategy:
1617
fail-fast: false

.github/workflows/test-mlperf-inference-rgat.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
os: [ubuntu-latest]
20-
python-version: [ "3.14" ]
20+
python-version: [ "3.12" ]
2121
backend: [ "pytorch" ]
2222
implementation: [ "python" ]
2323

.github/workflows/test-nvidia-mlperf-inference-implementations.yml

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,15 @@ on:
44
pull_request_target:
55
branches: [ "main", "dev" ]
66
paths:
7-
- '.github/workflows/test-mlperf-inference-resnet50.yml'
8-
- '**'
7+
- '.github/workflows/test-nvidia-mlperf-inference-implementations.yml'
8+
- 'script/app-mlperf-inference-nvidia/**'
99
- '!**.md'
1010

1111
jobs:
1212
run_nvidia:
13-
if: github.repository_owner == 'gateoverflow'
14-
timeout-minutes: 1440
13+
if: github.repository_owner == 'mlcommons'
1514
runs-on:
16-
- self-hosted
17-
- linux
18-
- x64
19-
- cuda
20-
- ${{ matrix.system }}
15+
- ubuntu-latest
2116
strategy:
2217
fail-fast: false
2318
matrix:
@@ -39,7 +34,7 @@ jobs:
3934
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_ed25519
4035
chmod 600 ~/.ssh/id_ed25519
4136
42-
ssh-keyscan -H ${{ secrets.SSH_HOST }} >> ~/.ssh/known_hosts
37+
#ssh-keyscan -p ${{ secrets.SSH_PORT }} -H ${{ secrets.SSH_HOST }} >> ~/.ssh/known_hosts
4338
- uses: actions/checkout@v4
4439
with:
4540
fetch-depth: 0
@@ -90,7 +85,7 @@ jobs:
9085
pip install --upgrade mlcflow
9186
mlc pull repo mlcommons@mlperf-automations --branch=dev
9287
93-
mlcrr run-mlperf,inference,_all-scenarios,_submission,_full,_r5.1-dev --remote_host=${{ secrets.SSH_HOST }} --remote_user=${{ secrets.SSH_USER }} --remote_port=${{ secrets.SSH_PORT }} --preprocess_submission=yes --pull_changes=yes --pull_inference_changes=yes --execution_mode=valid --gpu_name=$gpu_name --pull_changes=yes --pull_inference_changes=yes --model=${{ matrix.model }} --submitter="GATEOverflow" --hw_name=$hw_name --implementation=nvidia --backend=tensorrt --category=$category --division=closed --docker_dt --docker_mlc_repo=mlcommons@mlperf-automations --docker_mlc_repo_branch=dev --adr.compiler.tags=gcc --device=cuda --use_model_from_host=yes --use_dataset_from_host=yes --results_dir=$HOME/gh_action_results --submission_dir=$HOME/gh_action_submissions --clean $docker_string $submission_preprocessor_args --quiet
88+
mlcrr run-mlperf,inference,_all-scenarios,_submission,_full,_r5.1-dev --docker --remote_host=${{ secrets.SSH_HOST }} --remote_user=${{ secrets.SSH_USER }} --remote_port=${{ secrets.SSH_PORT }} --remote_ssh_key_file=$HOME/.ssh/id_ed25519 --remote_skip_host_verify --preprocess_submission=yes --pull_changes=yes --pull_inference_changes=yes --execution_mode=valid --gpu_name=$gpu_name --pull_changes=yes --pull_inference_changes=yes --model=${{ matrix.model }} --submitter="GATEOverflow" --hw_name=$hw_name --implementation=nvidia --backend=tensorrt --category=$category --division=closed --docker_dt --docker_mlc_repo=mlcommons@mlperf-automations --docker_mlc_repo_branch=dev --adr.compiler.tags=gcc --device=cuda --use_model_from_host=yes --use_dataset_from_host=yes --results_dir=$HOME/gh_action_results --submission_dir=$HOME/gh_action_submissions --clean $docker_string $submission_preprocessor_args --quiet
9489
#mlcr push,github,mlperf,inference,submission --repo_url=https://github.com/mlcommons/mlperf_inference_unofficial_submissions_v5.1 --repo_branch=auto-update --commit_message="Results from GH action on NVIDIA_$hw_name" --quiet --submission_dir=$HOME/gh_action_submissions --hw_name=$hw_name
9590
#mlcr push,github,mlperf,inference,submission --repo_url=https://github.com/GATEOverflow/mlperf_inference_submissions_v5.0 --repo_branch=main --commit_message="Results from GH actions on NVIDIA_$hw_name" --quiet --submission_dir=$HOME/gh_action_submissions --hw_name=$hw_name
9691

automation/script/docker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ def docker_run(self_module, i):
388388

389389
# Ensure Docker is available
390390
r = self_module.action_object.access(
391-
{'action': 'run', 'automation': 'script', 'tags': "get,docker"})
391+
{'action': 'run', 'automation': 'script', 'tags': "get,docker", 'quiet': True})
392392
if r['return'] > 0:
393393
return r
394394

0 commit comments

Comments
 (0)