Skip to content

Minor fixes to improve submission generation experience #242

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 6 commits into from
Feb 18, 2025
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
1 change: 1 addition & 0 deletions script/app-mlperf-inference-mlcommons-python/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -885,6 +885,7 @@ variations:
ENQUEUE_NUM_THREADS: 2
MLC_MLPERF_LOADGEN_MAX_BATCHSIZE: 16
MLC_MLPERF_VISION_DATASET_OPTION: imagenet_pytorch
MLC_ML_MODEL_STARTING_WEIGHTS_FILENAME: <<<MLC_MLPERF_CUSTOM_MODEL_PATH>>>


tvm-onnx:
Expand Down
2 changes: 1 addition & 1 deletion script/app-mlperf-inference/customize.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ def postprocess(i):
measurements['starting_weights_filename'] = env.get(
'MLC_ML_MODEL_STARTING_WEIGHTS_FILENAME', env.get(
'MLC_ML_MODEL_FILE', measurements.get(
'starting_weights_filename', '')))
'starting_weights_filename', 'TBD')))
measurements['retraining'] = env.get(
'MLC_ML_MODEL_RETRAINING', measurements.get(
'retraining', 'no'))
Expand Down
2 changes: 1 addition & 1 deletion script/app-mlperf-inference/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ default_env:
MLC_MLPERF_RUN_STYLE: test
MLC_TEST_QUERY_COUNT: '10'
MLC_MLPERF_QUANTIZATION: off
MLC_GET_PLATFORM_DETAILS: yes
MLC_GET_PLATFORM_DETAILS: no

env:
MLC_MLPERF_PRINT_SUMMARY: "no"
Expand Down
Loading