Skip to content

Commit

Permalink
calling BLAS.vendor() now forces depwarn (JuliaLang#41026)
Browse files Browse the repository at this point in the history
  • Loading branch information
ArunS-tack authored and Amit Shirodkar committed Jun 9, 2021
1 parent a6b1da3 commit 6556e54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/LinearAlgebra/src/blas.jl
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ get_config() = lbt_get_config()
# We hard-lock `vendor()` to `openblas(64)` here to satisfy older code, but all new code should use
# `get_config()` since it is now possible to have multiple vendors loaded at once.
function vendor()
Base.depwarn("`vendor()` is deprecated, use `BLAS.get_config()` and inspect the output instead", :vendor)
Base.depwarn("`vendor()` is deprecated, use `BLAS.get_config()` and inspect the output instead", :vendor; force=true)
if USE_BLAS64
return :openblas64
else
Expand Down

0 comments on commit 6556e54

Please sign in to comment.