Skip to content

Commit 47c11cb

Browse files
committed
Bump version and fix benchmarks.
1 parent 768ffbd commit 47c11cb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "LoopVectorization"
22
uuid = "bdcacae8-1622-11e9-2a5c-532679323890"
33
authors = ["Chris Elrod <[email protected]>"]
4-
version = "0.4.3"
4+
version = "0.5.0"
55

66
[deps]
77
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"

benchmark/looptests.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ end
2222
end
2323
@inline function jgemm!(C, A, Bᵀ::Adjoint)
2424
C .= 0
25-
B = parent(B)
25+
B = parent(Bᵀ)
2626
M, N = size(C); K = size(B,1)
2727
@inbounds for k 1:K, n 1:N
2828
@simd ivdep for m 1:M
@@ -117,8 +117,8 @@ function jgemv!(y, A, x)
117117
end
118118
end
119119
end
120-
@inline function jgemv!(y, At::Adjoint, x)
121-
A = parent(At)
120+
@inline function jgemv!(y, Aᵀ::Adjoint, x)
121+
A = parent(Aᵀ)
122122
y .= 0.0
123123
@inbounds for i eachindex(y)
124124
@simd ivdep for j eachindex(x)

0 commit comments

Comments
 (0)