4949CLI=" $ROOT_DIR /target/release/cli"
5050
5151# Phase labels we parse from stderr (order matters)
52- PHASES=" execute trace_build air pool_alloc main_commits aux_build aux_commit rounds_2_4 "
52+ PHASES=" execute trace_build air pool_alloc main_commits aux_build aux_commit"
5353
5454for size in $PROGRAMS ; do
5555 ELF=" $ELF_DIR /fib_iterative_${size} .elf"
@@ -63,15 +63,14 @@ for size in $PROGRAMS; do
6363 rm -f " $TMP_DIR /proof.bin"
6464
6565 # Parse absolute heap values (second-to-last column) from HEAP PROFILE section
66- HEAP_VALS=$( awk ' /^=== HEAP PROFILE/,/^─ ─/{
66+ HEAP_VALS=$( awk ' /^=== HEAP PROFILE/,/^ ─/{
6767 if (/After execute/) printf "execute=%s\n", $(NF-1)
6868 if (/After trace build/) printf "trace_build=%s\n", $(NF-1)
6969 if (/After AIR/) printf "air=%s\n", $(NF-1)
7070 if (/after pool alloc/) printf "pool_alloc=%s\n", $(NF-1)
7171 if (/after main commits/) printf "main_commits=%s\n", $(NF-1)
7272 if (/after aux build/) printf "aux_build=%s\n", $(NF-1)
7373 if (/after aux commit/) printf "aux_commit=%s\n", $(NF-1)
74- if (/after rounds 2-4/) printf "rounds_2_4=%s\n", $(NF-1)
7574 }' " $STDERR " )
7675
7776 PEAK=$( grep -o ' Peak heap: [0-9]*' " $STDOUT " | awk ' {print $3}' )
@@ -104,7 +103,6 @@ for phase in $PHASES; do
104103 main_commits) label=" Main commits" ;;
105104 aux_build) label=" Aux build" ;;
106105 aux_commit) label=" Aux commit" ;;
107- rounds_2_4) label=" Rounds 2-4" ;;
108106 esac
109107
110108 printf " %-22s" " $label "
@@ -155,7 +153,6 @@ for phase in $PHASES; do
155153 main_commits) label=" Main commits" ;;
156154 aux_build) label=" Aux build" ;;
157155 aux_commit) label=" Aux commit" ;;
158- rounds_2_4) label=" Rounds 2-4" ;;
159156 esac
160157
161158 # Collect (steps_M, delta) pairs
@@ -169,7 +166,6 @@ for phase in $PHASES; do
169166 main_commits) prev_phase_key=" pool_alloc" ;;
170167 aux_build) prev_phase_key=" main_commits" ;;
171168 aux_commit) prev_phase_key=" aux_build" ;;
172- rounds_2_4) prev_phase_key=" aux_commit" ;;
173169 esac
174170
175171 for size in $PROGRAMS ; do
0 commit comments