Skip to content

Commit b892a72

Browse files
committed
fix digits
1 parent d7dc45a commit b892a72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codeflash/optimization/optimizer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ def determine_best_candidate(
570570
f"loop{'s' if candidate_result.max_loop_count > 1 else ''})"
571571
)
572572
tree.add(f"Speedup percentage: {perf_gain * 100:.1f}%")
573-
tree.add(f"Speedup ratio: {perf_gain:.1f}X")
573+
tree.add(f"Speedup ratio: {perf_gain:.3f}X")
574574

575575
best_optimization = BestOptimization(
576576
candidate=candidate,

0 commit comments

Comments
 (0)