diff --git a/.github/workflows/ci_boo_conv.yml b/.github/workflows/ci_boo_conv.yml index b221f84366..64b7814a50 100644 --- a/.github/workflows/ci_boo_conv.yml +++ b/.github/workflows/ci_boo_conv.yml @@ -75,14 +75,12 @@ jobs: cd iree-turbine export ROCR_VISIBLE_DEVICES="0,1,2,3,4,5,6,7" echo "Running all proxy config without tuning" - export BOO_TUNING_SPEC_PATH="" python iree/turbine/kernel/boo/driver/driver.py --gpu-id=-1 --commands-file ../shark-ai-reports/boo/all_proxy_config.txt --csv ../output_artifacts/all_proxy_run_without_tuning.csv || true + echo "Running prod conv config without tuning" + python iree/turbine/kernel/boo/driver/driver.py --gpu-id=-1 --commands-file ../shark-ai-reports/boo/prod_conv_config.txt --csv ../output_artifacts/prod_conv_config_without_tuning.csv || true echo "Running all proxy config with tuning" export BOO_TUNING_SPEC_PATH="iree/turbine/kernel/boo/runtime/tuning_specs.mlir" python iree/turbine/kernel/boo/driver/driver.py --gpu-id=-1 --commands-file ../shark-ai-reports/boo/all_proxy_config.txt --csv ../output_artifacts/all_proxy_run_with_tuning.csv || true - export BOO_TUNING_SPEC_PATH="" - echo "Running prod conv config without tuning" - python iree/turbine/kernel/boo/driver/driver.py --gpu-id=-1 --commands-file ../shark-ai-reports/boo/prod_conv_config.txt --csv ../output_artifacts/prod_conv_config_without_tuning.csv || true export BOO_TUNING_SPEC_PATH="iree/turbine/kernel/boo/runtime/tuning_specs.mlir" echo "Running prod conv config with tuning" python iree/turbine/kernel/boo/driver/driver.py --gpu-id=-1 --commands-file ../shark-ai-reports/boo/prod_conv_config.txt --csv ../output_artifacts/prod_conv_config_with_tuning.csv || true