You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LoopVectorization.check_args returns false for OffsetArray{Bool, BitVector}, but doesn't with the similar OffsetArray{Bool, Vector{Bool}}
Code to reproduce the problem:
using OffsetArrays
using LoopVectorization
OffsetArray(zeros(Bool, 10)) |> LoopVectorization.check_args
OffsetArray(trues(10)) |> LoopVectorization.check_args
Both are expected to return true
The text was updated successfully, but these errors were encountered:
I am slowly working on replacing this library, but admittedly BitArray support will initially be poor. My point in bringing that up is that further work on LoopVectorization.jl will have a limited lifespan.
LoopVectorization.check_args returns false for
OffsetArray{Bool, BitVector}
, but doesn't with the similarOffsetArray{Bool, Vector{Bool}}
Code to reproduce the problem:
Both are expected to return
true
The text was updated successfully, but these errors were encountered: