We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb67c27 commit 437ab5bCopy full SHA for 437ab5b
flow/test/test_helper.sh
@@ -77,6 +77,21 @@ 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
if [[ -n "${RUN_AUTOTUNER+x}" ]] && [[ ${RUN_AUTOTUNER} -eq 1 ]]; then
96
# run the commands in ORFS root dir
97
echo "[INFO FLW-0029] Installing dependencies in virtual environment."
0 commit comments