From cb4ca72b33cfffff2a7f8bffbf7b90b396a50b89 Mon Sep 17 00:00:00 2001 From: Kevin Kim Date: Fri, 20 Oct 2023 20:24:08 -0700 Subject: [PATCH] writes to synth csv --- synthDC/scripts/fp-synth.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/synthDC/scripts/fp-synth.sh b/synthDC/scripts/fp-synth.sh index 35fa54ac8..1dd3c443a 100755 --- a/synthDC/scripts/fp-synth.sh +++ b/synthDC/scripts/fp-synth.sh @@ -112,6 +112,7 @@ echo $title # writes area delay of runs to csv writeCSV () { + echo "design,area,timing" > $WALLY/synthDC/fp-synth.csv # iterate over all files in runs/ for FILE in $WALLY/synthDC/runs/*; do @@ -119,11 +120,10 @@ writeCSV () { # grab area areaString=($(grep "Total cell area" $FILE/reports/area.rep)) area=${areaString[3]} - echo $area # grab timing timingString=($(grep "data arrival time" $FILE/reports/timing.rep)) timing=${timingString[3]} - echo $timing + echo $design,$area,$timing >> $WALLY/synthDC/fp-synth.csv done; }