Skip to content

Commit ff35596

Browse files
committed
Remove debug again
1 parent 4835a0f commit ff35596

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

src/lapack.jl

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4092,16 +4092,7 @@ for (stev, stebz, stegr, stein, elty) in
40924092
end
40934093
wm = min(n, m[])
40944094
Zm = min(Zn, m[])
4095-
try
4096-
return resize!(w, wm), reshape(resize!(Z, ldz * Zm), ldz, Zm)
4097-
catch ex
4098-
if isa(ex, ReadOnlyMemoryError)
4099-
@info "ReadOnlyMemoryError!" n Zn wm Zm m[] jobz range dv ev vl vu il iu
4100-
@info w
4101-
@info Z
4102-
end
4103-
rethrow()
4104-
end
4095+
return resize!(w, wm), reshape(resize!(Z, ldz * Zm), ldz, Zm)
41054096
end
41064097

41074098
function stein!(dv::AbstractVector{$elty}, ev_in::AbstractVector{$elty}, w_in::AbstractVector{$elty}, iblock_in::AbstractVector{BlasInt}, isplit_in::AbstractVector{BlasInt})

0 commit comments

Comments
 (0)