Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion src/gemm.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,14 @@
## Borrowed from Knet.jl, adapted for compile-time constants

using LinearAlgebra
using LinearAlgebra.BLAS: libblas, BlasInt, @blasfunc
using LinearAlgebra.BLAS: BlasInt, @blasfunc

if VERSION >= v"1.7-"
using LinearAlgebra.BLAS: libblastrampoline
const libblas = libblastrampoline
else
using LinearAlgebra.BLAS: libblas
end

using Compat: get_num_threads, set_num_threads # needs Compat 3.13, for any Julia < 1.6

Expand Down