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
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