Skip to content

Commit

Permalink
[LinearAlgebra] Remove unreliable doctests
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 JuliaLang#41973), or between different CPUs, which makes these
doctests unreliable.
  • Loading branch information
giordano committed Oct 5, 2024
1 parent 03c0b89 commit ced7bcd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions stdlib/LinearAlgebra/src/LinearAlgebra.jl
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ control over the factorization of `A`.
these are already in a factorized form
# Examples
```jldoctest
```julia-repl
julia> A = [1 2.2 4; 3.1 0.2 3; 4 1 2];
julia> X = [1; 2.5; 3];
Expand Down Expand Up @@ -426,7 +426,7 @@ control over the factorization of `A`.
these are already in a factorized form
# Examples
```jldoctest
```julia-repl
julia> A = [1 2.2 4; 3.1 0.2 3; 4 1 2];
julia> X = [1; 2.5; 3];
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 @@ -446,7 +446,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 ced7bcd

Please sign in to comment.