Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backends/nxp/tests/test_split_group_convolution.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def test_split_group_convolution__2d(self, _, input_shape: list[int], group: int
input_data = torch.randn(input_shape, dtype=torch.float32)
out1 = original_module(input_data).detach().numpy()
out2 = modified_module(input_data).detach().numpy()
assert np.allclose(out1, out2, atol=2.0e-7)
assert np.allclose(out1, out2, atol=2.0e-7, rtol=1.9e-4)

# Make sure the graph can be correctly quantized and lowered to edge.
ep = _quantize_and_lower_module(
Expand Down
Loading