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
This might be the same as #69, but I thought I'd check anyway. Just let me know if I should post elsewhere. Alternatively it could be because LoopVectorization only works with unit stride? I sort of assumed that wouldn't matter here since the underlying stride is still 1.
using AxisIndices, LoopVectorization
x =rand(5)
@avx x .*=5# works
y =AxisArray(rand(5), 1:5)
@avx y .*=5# errors below@avx y .*5# similar error below
This might be the same as #69, but I thought I'd check anyway. Just let me know if I should post elsewhere. Alternatively it could be because LoopVectorization only works with unit stride? I sort of assumed that wouldn't matter here since the underlying stride is still 1.
The text was updated successfully, but these errors were encountered: