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
It uses smaller weights !torch.vtensor<[128,4,3,3],f32> that originally is 128 x 4 * 32 x 3 x 3 = 128 x 128 x 3 x 3 so maybe passed not all of existing weights.
Tests that exists in torch mlir currently are not passing:
So this failure requires further investigation to figure out the reason of incorrect computation:
****** Failed tests - 1 tests
FAIL - "ConvolutionModule2DGroups_basic"
@ trace item #0 - call to "forward"
@ output of call to "forward"
ERROR: value
(Tensor with shape=[1, 32, 2, 2], dtype=torch.float32, min=+0.0, max=+21.19, mean=+3.934) is not close to golden value
(Tensor with shape=[1, 32, 2, 2], dtype=torch.float32, min=+0.7049, max=+20.61, mean=+7.846)
The text was updated successfully, but these errors were encountered:
ResNext networks uses Grouped Convolutions e.g. from fx graph python:
Last parameter is amount of groups. It splits weights into amount of groups, so in shape and out shape
It uses smaller weights !torch.vtensor<[128,4,3,3],f32> that originally is 128 x 4 * 32 x 3 x 3 = 128 x 128 x 3 x 3 so maybe passed not all of existing weights.
Tests that exists in torch mlir currently are not passing:
So this failure requires further investigation to figure out the reason of incorrect computation:
The text was updated successfully, but these errors were encountered: