Skip to content

Commit 66cc52f

Browse files
Hotfix typo in linearsolveautotune (#774)
Fixes #771
1 parent 788994a commit 66cc52f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/LinearSolveAutotune/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "LinearSolveAutotune"
22
uuid = "67398393-80e8-4254-b7e4-1b9a36a3c5b6"
33
authors = ["SciML"]
4-
version = "1.10.0"
4+
version = "1.10.1"
55

66
[sources]
77
LinearSolve = {path = "../.."}

lib/LinearSolveAutotune/src/benchmarking.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,11 +285,11 @@ function benchmark_algorithms(matrix_sizes, algorithms, alg_names, eltypes;
285285
# Actual benchmark
286286
# Create benchmark with custom parameters
287287
bench_params = BenchmarkTools.Parameters(;seconds=seconds, samples=samples)
288-
b = @benchmarkable solve($prob, $alg) setup=(prob = LinearProblem(
288+
_bench = @benchmarkable solve($prob, $alg) setup=(prob = LinearProblem(
289289
copy($A), copy($b);
290290
u0 = copy($u0),
291291
alias = LinearAliasSpecifier(alias_A = true, alias_b = true)))
292-
bench = BenchmarkTools.run(b, bench_params)
292+
bench = BenchmarkTools.run(_bench, bench_params)
293293

294294
# Calculate GFLOPs
295295
min_time_sec = minimum(bench.times) / 1e9

0 commit comments

Comments
 (0)