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
In packed_conv2d_nchw function, there're four reduction loops: in_channel, kernel_h, kernel_w, and bitwidth. When I try to move the output channel loop into the reduction loops, I get the error message:
It's actually our limitation. Currently we put the reduction variable outside all the reduction loops, causing inner loops imperfect, thus we cannot directly permute those reduction loops with spatial loops.
In
packed_conv2d_nchw
function, there're four reduction loops:in_channel
,kernel_h
,kernel_w
, andbitwidth
. When I try to move the output channel loop into the reduction loops, I get the error message:Here's the example:
The text was updated successfully, but these errors were encountered: