From 6556e549757fe1d6aa83d37ebeef2a25108290be Mon Sep 17 00:00:00 2001 From: Arun sanganal <74652697+ArunSanganal@users.noreply.github.com> Date: Tue, 1 Jun 2021 02:51:59 +0530 Subject: [PATCH] calling BLAS.vendor() now forces depwarn (#41026) --- stdlib/LinearAlgebra/src/blas.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/LinearAlgebra/src/blas.jl b/stdlib/LinearAlgebra/src/blas.jl index 57fd5c03342d7f..327beb020901ba 100644 --- a/stdlib/LinearAlgebra/src/blas.jl +++ b/stdlib/LinearAlgebra/src/blas.jl @@ -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