File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -81,17 +81,17 @@ set -x
8181# Run Autotuner CI specifically for gcd on selected platforms.
8282if [ -z " ${RUN_AUTOTUNER+x} " ]; then
8383 echo " RUN_AUTOTUNER not set, disable AT test."
84- RUN_AUTOTUNER=0
84+ RUN_AUTOTUNER=" false "
8585fi
8686
87- if [ $ RUN_AUTOTUNER -eq 1 ]; then
87+ if [ " ${ RUN_AUTOTUNER} " == " true " ]; then
8888 case $DESIGN_NAME in
8989 " gcd" )
9090 # Keep RUN_AUTOTUNER enabled only for these designs
9191 ;;
9292 " *" )
9393 echo " Disable AT test for design ${DESIGN_NAME} ."
94- RUN_AUTOTUNER=0
94+ RUN_AUTOTUNER=" false "
9595 ;;
9696 esac
9797 case $PLATFORM in
@@ -100,12 +100,12 @@ if [ $RUN_AUTOTUNER -eq 1 ]; then
100100 ;;
101101 * )
102102 echo " Disable AT test for platform ${PLATFORM} ."
103- RUN_AUTOTUNER=0
103+ RUN_AUTOTUNER=" false "
104104 ;;
105105 esac
106106fi
107107
108- if [ $ RUN_AUTOTUNER -eq 1 ]; then
108+ if [ " ${ RUN_AUTOTUNER} " == " true " ]; then
109109 set +x
110110 echo " Start AutoTuner test."
111111 ./test_autotuner.sh
You can’t perform that action at this time.
0 commit comments