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
using LoopVectorization
A = [iz*1e2+ iy*1e1+ ix for ix=1:7, iy=1:5, iz=1:6];
sendbuf =zeros(size(A,2), size(A,3));
ix, iy, iz =2, 1:size(A,2), 1:size(A,3);
dst =view(sendbuf,:);
src =view(view(A,ix, :, :),:);
@tturbofor ix =1:length(dst)
dst[ix] = src[ix]
end
This MWE
produces the following error:
The text was updated successfully, but these errors were encountered: