Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions lib/LinearSolveAutotune/src/benchmarking.jl
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,9 @@ function benchmark_algorithms(matrix_sizes, algorithms, alg_names, eltypes;
if haskey(blocked_algorithms[string(eltype)], name)
max_allowed_size = blocked_algorithms[string(eltype)][name]
if n > max_allowed_size
# Clear progress line and show warning on new line
println() # Ensure we're on a new line
@warn "Algorithm $name skipped for size $n (exceeded maxtime on size $max_allowed_size matrix)"
# Still need to update progress bar
ProgressMeter.next!(progress)
# Record as skipped due to exceeding maxtime on smaller matrix
Expand Down
Loading