Skip to content

Commit d6c0382

Browse files
committed
weaken conv2d test error threshold
1 parent 4fa0331 commit d6c0382

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/test-backend-ops.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3728,6 +3728,10 @@ struct test_conv_2d : public test_case {
37283728
return VARS_TO_STR10(ne_input, ne_kernel, type_kernel, stride0, stride1, padding0, padding1, dilation0, dilation1, cwhn);
37293729
}
37303730

3731+
double max_nmse_err() override {
3732+
return 5e-4;
3733+
}
3734+
37313735
uint64_t op_flops(ggml_tensor * t) override {
37323736
GGML_UNUSED(t);
37333737
// Just counting matmul costs:

0 commit comments

Comments
 (0)