Files
Jungfraujoch/fpga/scripts/print_hls_result.sh
2025-03-24 12:16:33 +01:00

9 lines
236 B
Bash

#!/bin/bash
for i in */; do
if [ -e $i/solution1/syn/report ];
then
printf "%30s %s\n" $i "`cat $i/solution1/syn/report/${i%%/}_csynth.rpt | grep -A23 "Utilization Estimates" |tail -n21 |grep Total|cut -c30-`"
fi
done