From 2e19e4e49d32b87032330e4eec4e9b8ed057d089 Mon Sep 17 00:00:00 2001 From: woclass Date: Mon, 11 Jul 2022 23:19:50 +0800 Subject: [PATCH] doc: LinearAlgebra.BLAS; add compat note for `spr!`, `spmv!`, `hpmv!` (#45990) * doc: LinearAlgebra.BLAS; add compat note for `spr!` need v1.8+ add by: https://github.com/JuliaLang/julia/commit/ae336abc0ed7e63ab933d0073df28c51e981d8fc * doc: LinearAlgebra.BLAS; add compat note for `spmv!` need v1.5+ add by: https://github.com/JuliaLang/julia/commit/d8b2209bba09b649afc3288fce3f7e17f97a495e * doc: LinearAlgebra.BLAS; add compat note for `hpmv!` need v1.5+ add by: https://github.com/JuliaLang/julia/commit/0b034fd9fa7994b5f60b0f519f2038352e7c221c --- stdlib/LinearAlgebra/src/blas.jl | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/stdlib/LinearAlgebra/src/blas.jl b/stdlib/LinearAlgebra/src/blas.jl index b27d69138cb79..d6fc2d0e1fd1f 100644 --- a/stdlib/LinearAlgebra/src/blas.jl +++ b/stdlib/LinearAlgebra/src/blas.jl @@ -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! @@ -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! @@ -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!