Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions automation/script/docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def dockerfile(self_module, input_params):
deps = docker_settings.get('build_deps', [])
if deps:
r = self_module._run_deps(
deps, [], env, {}, {}, {}, {}, '', [], '', False, '',
deps, [], env, {}, {}, {}, add_deps_recursive, '', [], '', False, '',
show_time, ' ', run_state)
if r['return'] > 0:
return r
Expand Down Expand Up @@ -336,7 +336,7 @@ def docker_run(self_module, i):
deps = docker_settings.get('deps', [])
if deps:
r = self_module._run_deps(
deps, [], env, {}, {}, {}, {}, '', [], '', False, '',
deps, [], env, {}, {}, {}, add_deps_recursive, '', [], '', False, '',
show_time, ' ', run_state)
if r['return'] > 0:
return r
Expand Down
3 changes: 1 addition & 2 deletions script/app-mlperf-inference/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2079,8 +2079,7 @@ variations:
reproducibility
add_deps_recursive:
nvidia-inference-common-code:
version: r4.1-dev
tags: _mlcommons
tags: _mlcommons,_v4.0
nvidia-inference-server:
version: r4.0
tags: _mlcommons
Expand Down
2 changes: 1 addition & 1 deletion script/get-ml-model-gptj/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,6 @@ variations:
- names:
- cuda
tags: get,cuda
- tags: get,nvidia,scratch,space
- tags: get,cuda-devices,_with-pycuda
enable_if_env:
MLC_HOST_OS_FLAVOR:
Expand All @@ -163,6 +162,7 @@ variations:
skip_if_env:
MLC_HOST_OS_FLAVOR:
- ubuntu
- tags: get,nvidia,scratch,space
- env: {}
force_new_env_keys:
- GPTJ_CHECKPOINT_PATH
Expand Down
4 changes: 4 additions & 0 deletions script/get-mlperf-inference-nvidia-common-code/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ variations:
adr:
mlperf-inference-results:
tags: _nvidia-only
v4.0:
add_deps_recursive:
mlperf-inference-results:
tags: _code-only,_v4.0
v5.0:
add_deps_recursive:
mlperf-inference-results:
Expand Down
6 changes: 6 additions & 0 deletions script/get-mlperf-inference-results/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,12 @@ variations:
GITHUB_REPO_OWNER: GATEOverflow
NVIDIA_ONLY: 'yes'
group: source-repo
v4.0:
group: version
env:
MLC_GIT_URL: https://github.com/<<<GITHUB_REPO_OWNER>>>/inference_results_v4.0.git
MLC_MLPERF_INFERENCE_RESULTS_VERSION_NAME: v4.0
MLC_VERSION: "v4.0"
v5.0:
group: version
env:
Expand Down
Loading