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
Is your feature request related to a problem? Please describe.
Our implementation for lowering pass of dip.corr_2d is based on the consideration that we would never require tail processing for col_mid
(Ex.
) elements.
However, in certain cases of stride values, this region requires tail processing as well (Ex. stride = 13).
Describe the solution you'd like
I have already solved this issue in this branch of my fork, but we might be able to fix this in a more elegant way (perhaps without adding extra machine instructions in each iteration).
Additional context
This feature request is created for future reference (as I don't have much time to deal with this problem now), feel free to start a discussion and share your ideas.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Our implementation for lowering pass of
dip.corr_2d
is based on the consideration that we would never require tail processing forcol_mid
(Ex.
buddy-mlir/include/Utils/DIPUtils.h
Line 740 in 836e5fb
However, in certain cases of stride values, this region requires tail processing as well (Ex. stride = 13).
Describe the solution you'd like
I have already solved this issue in this branch of my fork, but we might be able to fix this in a more elegant way (perhaps without adding extra machine instructions in each iteration).
Additional context
This feature request is created for future reference (as I don't have much time to deal with this problem now), feel free to start a discussion and share your ideas.
The text was updated successfully, but these errors were encountered: