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
Summary:
Pull Request resolved: pytorch#715
Copy across pixels along width dim for im2col. This should help convolution with small number of input channels.
Copy across pixels of input width if we can. We can only do this
if the following conditions are met.
1) If the number of groups is 1. For number of groups > 1, im2col
doesn't copy data across groups.
2) If dilation is 1. For dilation > 1, copying from input
across channels is not sequential.
3) For copy from the last channel (end of filter or
end of image width) for the current filter,
only copy if we have enough in the current channel.
Differential Revision: D31227743
fbshipit-source-id: eadc62308f221f8731f566cd35eaeccd40781e6a
0 commit comments