Skip to content

Clean github action #123

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 31 commits into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
f5225bd
Update test-mlperf-inference-resnet50.yml
arjunsuresh Jan 10, 2025
1509b4e
Merge branch 'mlcommons:dev' into dev
arjunsuresh Jan 10, 2025
934dab4
Update test-cm-based-submission-generation.yml
arjunsuresh Jan 10, 2025
52fd2e6
Merge branch 'dev' into dev
arjunsuresh Jan 10, 2025
4ed39a7
Merge branch 'dev' into dev
arjunsuresh Jan 10, 2025
efc7263
Merge branch 'dev' into dev
arjunsuresh Jan 10, 2025
e2de041
Merge branch 'dev' into dev
arjunsuresh Jan 10, 2025
ec30f8e
Merge branch 'dev' into dev
arjunsuresh Jan 10, 2025
1ce00d1
Merge branch 'dev' into dev
arjunsuresh Jan 10, 2025
cffb9e7
Merge branch 'dev' into dev
arjunsuresh Jan 10, 2025
1ccc9ff
Merge branch 'dev' into dev
arjunsuresh Jan 10, 2025
3c6147f
Merge branch 'dev' into dev
arjunsuresh Jan 10, 2025
4d7bf3e
Merge branch 'dev' into dev
arjunsuresh Jan 10, 2025
ce4aa28
[Automated Commit] Format Codebase
arjunsuresh Jan 10, 2025
e43e36c
Merge branch 'dev' into dev
arjunsuresh Jan 10, 2025
69c8943
Merge branch 'dev' into dev
arjunsuresh Jan 10, 2025
28e4946
Merge branch 'dev' into dev
arjunsuresh Jan 11, 2025
7fd1715
Merge branch 'dev' into dev
arjunsuresh Jan 11, 2025
a4ece9a
Merge branch 'dev' into dev
arjunsuresh Jan 11, 2025
989b18f
Merge branch 'dev' into dev
arjunsuresh Jan 11, 2025
dc1fef7
Merge branch 'dev' into dev
arjunsuresh Jan 11, 2025
6b53dbf
Merge branch 'dev' into dev
arjunsuresh Jan 11, 2025
fbe52d8
Merge branch 'dev' into dev
arjunsuresh Jan 11, 2025
87bcbaa
[Automated Commit] Format Codebase
arjunsuresh Jan 11, 2025
045f38f
Merge branch 'dev' into dev
arjunsuresh Jan 11, 2025
45c3181
Merge branch 'dev' into dev
arjunsuresh Jan 11, 2025
8a04b6a
Update test-nvidia-mlperf-inference-implementations.yml
arjunsuresh Jan 12, 2025
e7bca7f
Update test-nvidia-mlperf-inference-implementations.yml
arjunsuresh Jan 13, 2025
cfcd77b
Merge branch 'dev' into dev
arjunsuresh Jan 14, 2025
0af92a1
[Automated Commit] Format Codebase
arjunsuresh Jan 14, 2025
0806027
Merge branch 'dev' into dev
arjunsuresh Jan 14, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ jobs:
- 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 }}
continue-on-error: true
run: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
strategy:
fail-fast: false
matrix:
# system: [ "GO-spr", "phoenix-Amd-Am5", "GO-i9", "mlc-server" ]
system: [ "mlc-server" ]
system: [ "GO-spr", "phoenix-Amd-Am5", "GO-i9"]
# system: [ "mlc-server" ]
python-version: [ "3.12" ]
model: [ "resnet50", "retinanet", "bert-99", "bert-99.9", "gptj-99.9", "3d-unet-99.9", "sdxl" ]
exclude:
Expand All @@ -33,7 +33,7 @@ jobs:
if [ "${{ matrix.system }}" = "GO-spr" ]; then
hw_name="RTX4090x2"
gpu_name=rtx_4090
docker_string=" --docker"
docker_string=" --docker --docker_recreate=yes"
elif [ "${{ matrix.system }}" = "mlc-server" ]; then
hw_name="H100x8"
gpu_name=h100
Expand Down
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,16 +143,17 @@ def custom_function(self):
clean_mlops_repo = os.environ.get('CM_MLOPS_CLEAN_REPO', 'false')
if str(clean_mlops_repo).lower() not in ["no", "0", "false", "off"]:
r = cmind.access({'action': 'rm',
'automation': 'repo',
'artifact': 'mlcommons@cm4mlops',
'force': True,
'all': True})
'automation': 'repo',
'artifact': 'mlcommons@cm4mlops',
'force': True,
'all': True})

branch = os.environ.get('CM_MLOPS_REPO_BRANCH', 'dev')
pull_default_mlops_repo = os.environ.get(
'CM_PULL_DEFAULT_MLOPS_REPO', 'true')

if str(pull_default_mlops_repo).lower() not in ["no", "0", "false", "off"]:
if str(pull_default_mlops_repo).lower() not in [
"no", "0", "false", "off"]:
r = cmind.access({'action': 'pull',
'automation': 'repo',
'artifact': 'mlcommons@mlperf-automations',
Expand Down
Loading