mirror of
https://github.com/opencv/opencv.git
synced 2026-07-31 00:03:03 +04:00
Merge branch 4.x
This commit is contained in:
@@ -224,6 +224,7 @@ static const TestCase testConformanceConfig[] = {
|
||||
{"test_depthtospace_example", 1, 1},
|
||||
{"test_dequantizelinear", 3, 1},
|
||||
{"test_dequantizelinear_axis", 3, 1},
|
||||
{"test_dequantizelinear_blocked", 3, 1},
|
||||
{"test_det_2d", 1, 1},
|
||||
{"test_det_nd", 1, 1},
|
||||
{"test_div", 2, 1},
|
||||
@@ -569,6 +570,7 @@ static const TestCase testConformanceConfig[] = {
|
||||
{"test_qlinearmatmul_3D", 8, 1},
|
||||
{"test_quantizelinear", 3, 1},
|
||||
{"test_quantizelinear_axis", 3, 1},
|
||||
{"test_quantizelinear_blocked", 3, 1},
|
||||
{"test_range_float_type_positive_delta", 3, 1},
|
||||
{"test_range_float_type_positive_delta_expanded", 3, 1},
|
||||
{"test_range_int32_type_negative_delta", 3, 1},
|
||||
|
||||
@@ -501,9 +501,11 @@ CASE(test_depthtospace_dcr_mode)
|
||||
CASE(test_depthtospace_example)
|
||||
// no filter
|
||||
CASE(test_dequantizelinear)
|
||||
// no filter
|
||||
SKIP;
|
||||
CASE(test_dequantizelinear_axis)
|
||||
// no filter
|
||||
SKIP;
|
||||
CASE(test_dequantizelinear_blocked)
|
||||
SKIP;
|
||||
CASE(test_det_2d)
|
||||
// no filter
|
||||
CASE(test_det_nd)
|
||||
@@ -1280,9 +1282,11 @@ CASE(test_qlinearmatmul_2D)
|
||||
CASE(test_qlinearmatmul_3D)
|
||||
// no filter
|
||||
CASE(test_quantizelinear)
|
||||
// no filter
|
||||
SKIP;
|
||||
CASE(test_quantizelinear_axis)
|
||||
// no filter
|
||||
SKIP;
|
||||
CASE(test_quantizelinear_blocked)
|
||||
SKIP;
|
||||
CASE(test_range_float_type_positive_delta)
|
||||
// no filter
|
||||
CASE(test_range_float_type_positive_delta_expanded)
|
||||
|
||||
@@ -48,6 +48,9 @@
|
||||
"test_cumsum_2d_axis_1",
|
||||
"test_cumsum_2d_negative_axis",
|
||||
"test_concat_1d_axis_negative_1",
|
||||
"test_dequantizelinear",
|
||||
"test_dequantizelinear_axis",
|
||||
"test_dequantizelinear_blocked",
|
||||
"test_div_uint8",
|
||||
"test_flatten_axis0",
|
||||
"test_flatten_axis2",
|
||||
@@ -71,6 +74,9 @@
|
||||
"test_pow_types_float32_int32", // vulkan backend does not take tensor other than float32 data type
|
||||
"test_pow_types_float32_int64", // vulkan backend does not take tensor other than float32 data type
|
||||
"test_pow_types_int", // vulkan backend does not take tensor other than float32 data type
|
||||
"test_quantizelinear",
|
||||
"test_quantizelinear_axis",
|
||||
"test_quantizelinear_blocked",
|
||||
"test_softmax_default_axis",
|
||||
"test_sub_bcast",
|
||||
"test_sub_uint8",
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
"test_dequantizelinear_blocked", // Issue https://github.com/opencv/opencv/issues/25999
|
||||
"test_quantizelinear", // Issue https://github.com/opencv/opencv/issues/25999
|
||||
"test_quantizelinear_axis", // Issue https://github.com/opencv/opencv/issues/25999
|
||||
"test_quantizelinear_blocked", // Issue https://github.com/opencv/opencv/issues/25999
|
||||
|
||||
+7
-1
@@ -1,4 +1,7 @@
|
||||
"test_averagepool_3d_default",
|
||||
"test_dequantizelinear",
|
||||
"test_dequantizelinear_axis",
|
||||
"test_dequantizelinear_blocked",
|
||||
"test_dropout_default_ratio",
|
||||
"test_globalmaxpool",
|
||||
"test_globalmaxpool_precomputed",
|
||||
@@ -14,7 +17,10 @@
|
||||
"test_maxpool_2d_same_upper",
|
||||
"test_maxpool_2d_strides",
|
||||
"test_maxpool_3d_default",
|
||||
"test_pow", // fp16 accuracy issue
|
||||
"test_pow",
|
||||
"test_quantizelinear",
|
||||
"test_quantizelinear_axis",
|
||||
"test_quantizelinear_blocked",
|
||||
"test_softmax_large_number",
|
||||
"test_softmax_large_number_expanded",
|
||||
"test_split_equal_parts_1d",
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
"test_averagepool_3d_default",
|
||||
"test_dequantizelinear",
|
||||
"test_dequantizelinear_axis",
|
||||
"test_dequantizelinear_blocked",
|
||||
"test_maxpool_3d_default",
|
||||
"test_quantizelinear",
|
||||
"test_quantizelinear_axis",
|
||||
"test_quantizelinear_blocked",
|
||||
"test_scatter_elements_with_axis",
|
||||
"test_scatter_elements_with_duplicate_indices",
|
||||
"test_scatter_elements_with_negative_indices",
|
||||
|
||||
@@ -80,8 +80,6 @@
|
||||
"test_convtranspose_pad", // Issue::Parser::Weights are required as inputs
|
||||
"test_convtranspose_pads", // Issue::Parser::Weights are required as inputs
|
||||
"test_convtranspose_with_kernel", // Issue::Parser::Weights are required as inputs
|
||||
"test_dequantizelinear", // Issue::Parser::Weights are required as inputs
|
||||
"test_dequantizelinear_axis", // Issue::Parser::Weights are required as inputs
|
||||
"test_det_2d", // Issue:: Unkonwn error
|
||||
"test_det_nd", // Issue:: Unkonwn error
|
||||
"test_dropout_default_mask", // Issue::cvtest::norm::wrong data type
|
||||
@@ -235,8 +233,6 @@
|
||||
"test_qlinearconv", // Issue::Parser: Blob x_scale not found in const blobs in function 'getBlob' (weights are required as inputs)
|
||||
"test_qlinearmatmul_2D", // Issue:: Parser: Variable weights is not supported in function 'parseQMatMul'
|
||||
"test_qlinearmatmul_3D", // ---- same as above ---
|
||||
"test_quantizelinear", // Issue::Parser: Blob y_scale not found in const blobs in function 'getBlob' (weights are required as inputs)
|
||||
"test_quantizelinear_axis", // ---- same as above ---
|
||||
"test_range_float_type_positive_delta", // Issue:: Unsupported data type in function. Unsupported type in function 'parseCast'
|
||||
"test_range_float_type_positive_delta_expanded", // ---- same as above ---
|
||||
"test_range_int32_type_negative_delta", // Issue:: Unsupported data type: INT32 in function. Unsupported type in function 'parseCast'
|
||||
|
||||
Reference in New Issue
Block a user