From c88dbd9cdbd6002e9b29414af7abb88e00bc0b45 Mon Sep 17 00:00:00 2001 From: d-monnet <70266099+d-monnet@users.noreply.github.com> Date: Mon, 6 Nov 2023 10:20:57 -0500 Subject: [PATCH] fix logscale argument (#109) --- src/tikz_export.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tikz_export.jl b/src/tikz_export.jl index a1ff5a7..b63a54b 100644 --- a/src/tikz_export.jl +++ b/src/tikz_export.jl @@ -75,7 +75,7 @@ function export_performance_profile_tikz( isempty(colours) && (colours = ["black" for _ = 1:size(T, 2)]) isempty(linestyles) && (linestyles = ["solid" for _ = 1:size(T, 2)]) - x_mat, y_mat = BenchmarkProfiles.performance_profile_data_mat(T; kwargs...) + x_mat, y_mat = BenchmarkProfiles.performance_profile_data_mat(T; logscale=logscale, kwargs...) # get nice looking graduation on x axis xmax, _ = findmax(x_mat[.!isnan.(x_mat)])