Skip to content

Commit

Permalink
[ci skip] Add compat and NEWS
Browse files Browse the repository at this point in the history
  • Loading branch information
tkf committed Aug 24, 2019
1 parent 8cedb92 commit ebe1d85
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ Standard library changes

#### LinearAlgebra

* `qr` and `qr!` functions support `blocksize` keyword argument ([#33053]).


#### SparseArrays

Expand Down
6 changes: 6 additions & 0 deletions stdlib/LinearAlgebra/src/qr.jl
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,9 @@ qr!(A::StridedMatrix{<:BlasFloat}, ::Val{true}) = QRPivoted(LAPACK.geqp3!(A)...)
An [`InexactError`](@ref) exception is thrown if the factorization produces a number not
representable by the element type of `A`, e.g. for integer types.
!!! compat "Julia 1.4"
The `blocksize` keyword argument requires Julia 1.4 or later.
# Examples
```jldoctest
julia> a = [1. 2.; 3. 4.]
Expand Down Expand Up @@ -340,6 +343,9 @@ The block size for QR decomposition can be specified by keyword argument
`blocksize :: Integer` when `pivot == Val(false)` and `A isa StridedMatrix{<:BlasFloat}`.
It is ignored when `blocksize > minimum(size(A))`. See [`QRCompactWY`](@ref).
!!! compat "Julia 1.4"
The `blocksize` keyword argument requires Julia 1.4 or later.
# Examples
```jldoctest
julia> A = [3.0 -6.0; 4.0 -8.0; 0.0 1.0]
Expand Down

0 comments on commit ebe1d85

Please sign in to comment.