Skip to content

Commit 39a3ec9

Browse files
committed
Address Vararg deprecation warning, addresses #298
1 parent 1e16bae commit 39a3ec9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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.12.50"
4+
version = "0.12.51"
55

66
[deps]
77
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"

src/simdfunctionals/vmap_grad_rrule.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ end
3333

3434
function ∂vmap_singlethread!(
3535
f::F, ∂y::Tuple{Vararg{DenseArray{T},A}}, y::DenseArray{T},
36-
args::Vararg{<:DenseArray{<:Base.HWReal},A}
36+
args::Vararg{DenseArray{Base.HWReal},A}
3737
) where {F,T <: Base.HWReal, A}
3838
N = length(y)
3939
ptry = VectorizationBase.zero_offsets(stridedpointer(y))

0 commit comments

Comments
 (0)