We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3405317 commit cca4dd3Copy full SHA for cca4dd3
backends/xnnpack/test/ops/test_conv1d.py
@@ -126,7 +126,9 @@ def _test_conv1d(
126
# quantized operators to be loaded and we don't want to do that in the test.
127
if not skip_to_executorch:
128
tester.to_executorch().serialize().run_method_and_compare_outputs(
129
- num_runs=10, atol=0.02, rtol=0.02
+ num_runs=10,
130
+ atol=0.04 if quantized else 1e-03,
131
+ rtol=0.02 if quantized else 1e-03,
132
)
133
134
def test_fp16_conv1d(self):
0 commit comments