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
4 changes: 3 additions & 1 deletion backends/xnnpack/test/ops/test_conv1d.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,9 @@ def _test_conv1d(
# quantized operators to be loaded and we don't want to do that in the test.
if not skip_to_executorch:
tester.to_executorch().serialize().run_method_and_compare_outputs(
num_runs=10, atol=0.02, rtol=0.02
num_runs=10,
atol=0.04 if quantized else 1e-03,
rtol=0.02 if quantized else 1e-03,
)

def test_fp16_conv1d(self):
Expand Down
Loading