From b1aa45d887fea367845d9074e45abadb2d39d9f2 Mon Sep 17 00:00:00 2001 From: d-monnet Date: Fri, 3 Nov 2023 10:59:54 -0400 Subject: [PATCH] fix logscale argument --- 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)])