Skip to content

Commit c18bcba

Browse files
fix typos in dispatches
1 parent 47aadfe commit c18bcba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/default.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ function defaultalg(A::GPUArraysCore.AbstractGPUArray, b::GPUArraysCore.Abstract
7171
end
7272

7373
# Allows A === nothing as a stand-in for dense matrix
74-
function defaultalg(A, b, ::Assumptions{true})
74+
function defaultalg(A, b, ::OperatorAssumptions{true})
7575
# Special case on Arrays: avoid BLAS for RecursiveFactorization.jl when
7676
# it makes sense according to the benchmarks, which is dependent on
7777
# whether MKL or OpenBLAS is being used
@@ -104,7 +104,7 @@ function defaultalg(A, b, ::Assumptions{true})
104104
alg
105105
end
106106

107-
function defaultalg(A, b, ::Val{false})
107+
function defaultalg(A, b, ::OperatorAssumptions{false})
108108
QRFactorization()
109109
end
110110

0 commit comments

Comments
 (0)