Skip to content

Commit

Permalink
doc: LinearAlgebra.BLAS; add compat note for spr!, spmv!, hpmv! (
Browse files Browse the repository at this point in the history
…JuliaLang#45990)

* doc: LinearAlgebra.BLAS; add compat note for `spr!`

need v1.8+
add by: JuliaLang@ae336ab

* doc: LinearAlgebra.BLAS; add compat note for `spmv!`

need v1.5+
add by: JuliaLang@d8b2209

* doc: LinearAlgebra.BLAS; add compat note for `hpmv!`

need v1.5+
add by: JuliaLang@0b034fd
  • Loading branch information
inkydragon committed Jul 11, 2022
1 parent afe3838 commit 1e5b095
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions stdlib/LinearAlgebra/src/blas.jl
Original file line number Diff line number Diff line change
Expand Up @@ -969,6 +969,9 @@ The scalar inputs `α` and `β` must be complex or real numbers.
The array inputs `x`, `y` and `AP` must all be of `ComplexF32` or `ComplexF64` type.
Return the updated `y`.
!!! compat "Julia 1.5"
`hpmv!` requires at least Julia 1.5.
"""
hpmv!

Expand Down Expand Up @@ -1126,6 +1129,9 @@ The scalar inputs `α` and `β` must be real.
The array inputs `x`, `y` and `AP` must all be of `Float32` or `Float64` type.
Return the updated `y`.
!!! compat "Julia 1.5"
`spmv!` requires at least Julia 1.5.
"""
spmv!

Expand Down Expand Up @@ -1194,6 +1200,9 @@ The scalar input `α` must be real.
The array inputs `x` and `AP` must all be of `Float32` or `Float64` type.
Return the updated `AP`.
!!! compat "Julia 1.8"
`spr!` requires at least Julia 1.8.
"""
spr!

Expand Down

0 comments on commit 1e5b095

Please sign in to comment.