Skip to content

Commit 30c8fcd

Browse files
revert T
1 parent ffc0574 commit 30c8fcd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/LinearSolveMKLExt.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,11 @@ function SciMLBase.solve!(cache::LinearCache, alg::MKLLUFactorization;
110110
m, n = size(A, 1), size(A, 2)
111111
if m > n
112112
Bc = copy(cache.b)
113-
getrs!('T', A.factors, A.ipiv, Bc; info)
113+
getrs!('N', A.factors, A.ipiv, Bc; info)
114114
return copyto!(cache.u, 1, Bc, 1, n)
115115
else
116116
copyto!(cache.u, cache.b)
117-
getrs!('T', A.factors, A.ipiv, cache.u; info)
117+
getrs!('N', A.factors, A.ipiv, cache.u; info)
118118
end
119119

120120
SciMLBase.build_linear_solution(alg, cache.u, nothing, cache)

0 commit comments

Comments
 (0)