We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f04027c commit 8827252Copy full SHA for 8827252
1 file changed
scripts/bench_heap_profile.sh
@@ -180,7 +180,7 @@ for phase in $PHASES; do
180
prev_val=$(grep "^${prev_phase_key}=" "$DATA" | cut -d= -f2)
181
delta=$((cur - prev_val))
182
fi
183
- steps_m=$(awk "BEGIN {printf \"%.2f\", $steps / 1000000}")
+ steps_m=$(awk "BEGIN {printf \"%.6f\", $steps / 1000000}")
184
PAIRS="$PAIRS $steps_m $delta"
185
done
186
@@ -216,7 +216,7 @@ for size in $PROGRAMS; do
216
steps=$(grep "^steps=" "$DATA" | cut -d= -f2)
217
peak=$(grep "^peak=" "$DATA" | cut -d= -f2)
218
[ -z "$peak" ] && continue
219
220
PEAK_PAIRS="$PEAK_PAIRS $steps_m $peak"
221
222
0 commit comments