Skip to content

Commit

Permalink
[LinearAlgebra] Remove unreliable doctests (#56011)
Browse files Browse the repository at this point in the history
The exact textual representation of the output of these doctests depend
on the specific kernel used by the BLAS backend, and can vary between
versions of OpenBLAS (as it did in #41973), or between different CPUs,
which makes these doctests unreliable.

Fix #55998.

(cherry picked from commit c2a2e38)
  • Loading branch information
giordano authored and KristofferC committed Oct 16, 2024
1 parent 3ba6c16 commit 25ee4ea
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 23 deletions.
26 changes: 4 additions & 22 deletions stdlib/LinearAlgebra/src/LinearAlgebra.jl
Original file line number Diff line number Diff line change
Expand Up @@ -299,17 +299,8 @@ julia> Y = zero(X);
julia> ldiv!(Y, qr(A), X);
julia> Y
3-element Vector{Float64}:
0.7128099173553719
-0.051652892561983674
0.10020661157024757
julia> A\\X
3-element Vector{Float64}:
0.7128099173553719
-0.05165289256198333
0.10020661157024785
julia> Y ≈ A\\X
true
```
"""
ldiv!(Y, A, B)
Expand Down Expand Up @@ -340,17 +331,8 @@ julia> Y = copy(X);
julia> ldiv!(qr(A), X);
julia> X
3-element Vector{Float64}:
0.7128099173553719
-0.051652892561983674
0.10020661157024757
julia> A\\Y
3-element Vector{Float64}:
0.7128099173553719
-0.05165289256198333
0.10020661157024785
julia> X ≈ A\\Y
true
```
"""
ldiv!(A, B)
Expand Down
2 changes: 1 addition & 1 deletion stdlib/LinearAlgebra/src/hessenberg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ This is useful because multiple shifted solves `(F + μ*I) \\ b`
Iterating the decomposition produces the factors `F.Q, F.H, F.μ`.
# Examples
```jldoctest
```julia-repl
julia> A = [4. 9. 7.; 4. 4. 1.; 4. 3. 2.]
3×3 Matrix{Float64}:
4.0 9.0 7.0
Expand Down

0 comments on commit 25ee4ea

Please sign in to comment.