We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 505c2a4 commit 1ce1760Copy full SHA for 1ce1760
flow/test/test_helper.sh
@@ -77,23 +77,7 @@ if [ $ret -eq 0 ] && grep -q 'power:' <(echo $TARGETS); then
77
ret=$(( ret + $? ))
78
fi
79
80
-# Run Autotuner CI specifically for gcd on selected platforms.
81
-RUN_AUTOTUNER=0
82
-case $DESIGN_NAME in
83
- "gcd")
84
- RUN_AUTOTUNER=1
85
- ;;
86
-esac
87
-case $PLATFORM in
88
- "asap7" | "sky130hd" | "ihp-sg13g2" )
89
- # Keep RUN_AUTOTUNER enabled only for these platforms
90
91
- *)
92
- RUN_AUTOTUNER=0
93
94
95
-
96
-if [ $RUN_AUTOTUNER -eq 1 ]; then
+if [[ -n "${RUN_AUTOTUNER+x}" ]] && [[ ${RUN_AUTOTUNER} -eq 1 ]]; then
97
# run the commands in ORFS root dir
98
echo "[INFO FLW-0029] Installing dependencies in virtual environment."
99
cd ../
0 commit comments