Skip to content

Commit 8d26d05

Browse files
authored
MKL 64bit (#76)
* MKL 64bit * Bump version.
1 parent 9730589 commit 8d26d05

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "BLASBenchmarksCPU"
22
uuid = "5fdc822c-4560-4d20-af7e-e5ee461714d5"
33
authors = ["Chris Elrod <[email protected]> and contributors"]
4-
version = "0.3.5"
4+
version = "0.3.6"
55

66
[deps]
77
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"

src/ccallblas.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ end
5050
_apply_inverse_ipiv_cols!(A::LU, B::StridedVecOrMat) = _ipiv_cols!(A, length(A.ipiv) : -1 : 1, B)
5151

5252
for (name,BlasInt,suff) [
53-
("mkl", :Int32, ""),
53+
("mkl", :Int64, ""),
5454
("openblas", :Int64, "_64_"),
5555
("blis", :Int64, "_64_")
5656
]
@@ -153,7 +153,7 @@ for (name,BlasInt,suff) ∈ [
153153
end
154154
end
155155
@static if Sys.ARCH === :x86_64
156-
let BlasInt = :Int32
156+
let BlasInt = :Int64
157157
for (T,prefix) [(:Float32,'s'),(:Float64,'d')]
158158
f = Symbol(prefix, "gemm_direct")
159159
@eval begin

0 commit comments

Comments
 (0)