Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion lib/LinearSolveAutotune/Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "LinearSolveAutotune"
uuid = "67398393-80e8-4254-b7e4-1b9a36a3c5b6"
authors = ["SciML"]
version = "1.10.0"
version = "1.10.1"

[sources]
LinearSolve = {path = "../.."}
Expand Down
4 changes: 2 additions & 2 deletions lib/LinearSolveAutotune/src/benchmarking.jl
Original file line number Diff line number Diff line change
Expand Up @@ -285,11 +285,11 @@ function benchmark_algorithms(matrix_sizes, algorithms, alg_names, eltypes;
# Actual benchmark
# Create benchmark with custom parameters
bench_params = BenchmarkTools.Parameters(;seconds=seconds, samples=samples)
b = @benchmarkable solve($prob, $alg) setup=(prob = LinearProblem(
_bench = @benchmarkable solve($prob, $alg) setup=(prob = LinearProblem(
copy($A), copy($b);
u0 = copy($u0),
alias = LinearAliasSpecifier(alias_A = true, alias_b = true)))
bench = BenchmarkTools.run(b, bench_params)
bench = BenchmarkTools.run(_bench, bench_params)

# Calculate GFLOPs
min_time_sec = minimum(bench.times) / 1e9
Expand Down
Loading