Skip to content

Commit

Permalink
Merge pull request #2499 from vvbandeira/disable-at
Browse files Browse the repository at this point in the history
ci: disable AutoTuner
  • Loading branch information
vvbandeira authored Oct 23, 2024
2 parents 59192a5 + 1ce1760 commit 7e8d10b
Showing 1 changed file with 1 addition and 17 deletions.
18 changes: 1 addition & 17 deletions flow/test/test_helper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,23 +77,7 @@ if [ $ret -eq 0 ] && grep -q 'power:' <(echo $TARGETS); then
ret=$(( ret + $? ))
fi

# Run Autotuner CI specifically for gcd on selected platforms.
RUN_AUTOTUNER=0
case $DESIGN_NAME in
"gcd")
RUN_AUTOTUNER=1
;;
esac
case $PLATFORM in
"asap7" | "sky130hd" | "ihp-sg13g2" )
# Keep RUN_AUTOTUNER enabled only for these platforms
;;
*)
RUN_AUTOTUNER=0
;;
esac

if [ $RUN_AUTOTUNER -eq 1 ]; then
if [[ -n "${RUN_AUTOTUNER+x}" ]] && [[ ${RUN_AUTOTUNER} -eq 1 ]]; then
# run the commands in ORFS root dir
echo "[INFO FLW-0029] Installing dependencies in virtual environment."
cd ../
Expand Down

0 comments on commit 7e8d10b

Please sign in to comment.