We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
LinearAlgebra.BLAS.libblastrampoline
Base.libblas_name
1 parent 7369244 commit 381a41fCopy full SHA for 381a41f
src/NNlib.jl
@@ -18,8 +18,6 @@ using Requires
18
using Statistics
19
using Statistics: mean
20
21
-const libblas = Base.libblas_name
22
-
23
const Numeric = Union{AbstractArray{<:T}, T} where {T<:Number}
24
25
# Include APIs
src/gemm.jl
@@ -3,6 +3,12 @@
3
4
using LinearAlgebra.BLAS: get_num_threads, set_num_threads
5
6
+if isdefined(LinearAlgebra.BLAS, :libblastrampoline)
7
+ const libblas = LinearAlgebra.BLAS.libblastrampoline
8
+else
9
+ const libblas = Base.libblas_name
10
+end
11
+
12
"""
13
gemm!()
14
0 commit comments