Skip to content

Commit 48368dc

Browse files
committed
loosen threshold for Mali
1 parent b88ad7f commit 48368dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/dnn/test/test_torch_importer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ TEST_P(Test_Torch_layers, run_convolution)
113113
{
114114
// Output reference values are in range [23.4018, 72.0181]
115115
double l1 = (target == DNN_TARGET_OPENCL_FP16 || target == DNN_TARGET_MYRIAD) ? 0.08 : default_l1;
116-
double lInf = (target == DNN_TARGET_OPENCL_FP16 || target == DNN_TARGET_MYRIAD) ? 0.42 : default_lInf;
116+
double lInf = (target == DNN_TARGET_OPENCL_FP16 || target == DNN_TARGET_MYRIAD) ? 0.43 : default_lInf;
117117
runTorchNet("net_conv", "", false, true, true, l1, lInf);
118118
}
119119

@@ -165,7 +165,7 @@ TEST_P(Test_Torch_layers, run_concat)
165165
TEST_P(Test_Torch_layers, run_depth_concat)
166166
{
167167
runTorchNet("net_depth_concat", "", false, true, true, 0.0,
168-
target == DNN_TARGET_OPENCL_FP16 ? 0.021 : 0.0);
168+
target == DNN_TARGET_OPENCL_FP16 ? 0.032 : 0.0);
169169
}
170170

171171
TEST_P(Test_Torch_layers, run_deconv)

0 commit comments

Comments
 (0)