We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8052ebb commit 519299dCopy full SHA for 519299d
ext/SCPrettyTablesExt.jl
@@ -29,8 +29,7 @@ function SnoopCompile.report_invalidations(io::IO = stdout;
29
trunc_msg = truncated_invs ? " (showing $nr functions) " : ""
30
@info "$n_total_invalidations methods invalidated for $n_invs_total functions$trunc_msg"
31
n_invalidations_percent = map(invs_per_method) do inv
32
- inv_perc = inv / sum_invs
33
- Int(round(inv_perc*100, digits = 0))
+ Float16(100 * inv / sum_invs)
34
end
35
meth_name = map(trees) do inv
36
"$(inv.method.name)"
0 commit comments