Skip to content

Commit

Permalink
fix logscale argument
Browse files Browse the repository at this point in the history
  • Loading branch information
d-monnet committed Nov 3, 2023
1 parent e639a63 commit b1aa45d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tikz_export.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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)])
Expand Down

0 comments on commit b1aa45d

Please sign in to comment.