Skip to content

Commit

Permalink
Add dashboard support in submission generation script
Browse files Browse the repository at this point in the history
  • Loading branch information
arjunsuresh committed Jan 19, 2024
1 parent 95bbf6c commit e654a71
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions cm-mlops/script/generate-mlperf-inference-submission/_cm.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@
"sw_notes_extra": "CM_MLPERF_SUT_SW_NOTES_EXTRA",
"hw_notes_extra": "CM_MLPERF_SUT_HW_NOTES_EXTRA",
"duplicate": "CM_MLPERF_DUPLICATE_SCENARIO_RESULTS",
"dashboard": "CM_MLPERF_DASHBOARD",
"dashboard_wb_project": "CM_MLPERF_DASHBOARD_WANDB_PROJECT",
"division": "CM_MLPERF_SUBMISSION_DIVISION",
"category": "CM_MLPERF_SUBMISSION_CATEGORY",
"analyzer_settings_file": "CM_MLPERF_POWER_ANALYZER_SETTINGS_FILE_PATH",
Expand Down
12 changes: 6 additions & 6 deletions cm-mlops/script/run-all-mlperf-models/run-mobilenet-models.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,33 +34,33 @@ extra_tags=""
run "cm run script --tags=run,mobilenet-models,_tflite,_accuracy-only$extra_tags \
--adr.compiler.tags=gcc \
${extra_option} \
--results_dir=$HOME/mobilenet_results"
--results_dir=$HOME/results_dir"

run "cm run script --tags=run,mobilenet-models,_tflite,_performance-only$extra_tags \
${POWER} \
--adr.compiler.tags=gcc \
${extra_option} \
--results_dir=$HOME/mobilenet_results"
--results_dir=$HOME/results_dir"

run "cm run script --tags=run,mobilenet-models,_tflite,_populate-readme$extra_tags \
${POWER} \
--adr.compiler.tags=gcc \
${extra_option} \
--results_dir=$HOME/mobilenet_results"
--results_dir=$HOME/results_dir"

run "cm run script --tags=run,mobilenet-models,_tflite,_armnn,_neon,_accuracy-only$extra_tags \
--adr.compiler.tags=gcc \
${extra_option} \
--results_dir=$HOME/mobilenet_results"
--results_dir=$HOME/results_dir"

run "cm run script --tags=run,mobilenet-models,_tflite,_armnn,_neon,_performance-only$extra_tags \
${POWER} \
${extra_option} \
--adr.compiler.tags=gcc \
--results_dir=$HOME/mobilenet_results"
--results_dir=$HOME/results_dir"

run "cm run script --tags=run,mobilenet-models,_tflite,_armnn,_neon,_populate-readme$extra_tags \
${POWER} \
${extra_option} \
--adr.compiler.tags=gcc \
--results_dir=$HOME/mobilenet_results"
--results_dir=$HOME/results_dir"

0 comments on commit e654a71

Please sign in to comment.