Skip to content

Commit 437ab5b

Browse files
committed
reenable ci
Signed-off-by: Jack Luar <[email protected]>
1 parent eb67c27 commit 437ab5b

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

flow/test/test_helper.sh

+15
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,21 @@ if [ $ret -eq 0 ] && grep -q 'power:' <(echo $TARGETS); then
7777
ret=$(( ret + $? ))
7878
fi
7979

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+
esac
8095
if [[ -n "${RUN_AUTOTUNER+x}" ]] && [[ ${RUN_AUTOTUNER} -eq 1 ]]; then
8196
# run the commands in ORFS root dir
8297
echo "[INFO FLW-0029] Installing dependencies in virtual environment."

0 commit comments

Comments
 (0)