Skip to content

Commit f0135a8

Browse files
format
1 parent 1e515d1 commit f0135a8

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

JuliaBUGS/benchmark/benchmark.jl

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,15 @@ function _create_results_dataframe(results::OrderedDict{Symbol,BenchmarkResult})
8383
),
8484
)
8585
end
86-
DataFrames.rename!(df, :Density_Time => "Density Time (µs)", :Density_Gradient_Time => "Density+Gradient Time (µs)")
86+
DataFrames.rename!(
87+
df,
88+
:Density_Time => "Density Time (µs)",
89+
:Density_Gradient_Time => "Density+Gradient Time (µs)",
90+
)
8791
return df
8892
end
8993

90-
function _print_results_table(
91-
results::OrderedDict{Symbol,BenchmarkResult}; backend=:text
92-
)
94+
function _print_results_table(results::OrderedDict{Symbol,BenchmarkResult}; backend=:text)
9395
df = _create_results_dataframe(results)
9496
return pretty_table(df; backend=backend)
9597
end

0 commit comments

Comments
 (0)