1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 15:53:03 +04:00

Merge pull request #10717 from pengli:dnn

This commit is contained in:
Alexander Alekhin
2018-02-01 10:49:54 +00:00
8 changed files with 536 additions and 22 deletions
+10 -2
View File
@@ -367,11 +367,14 @@ OCL_TEST(Layer_Test_PReLU, Accuracy)
// );
//}
static void test_Reshape_Split_Slice_layers()
static void test_Reshape_Split_Slice_layers(int targetId)
{
Net net = readNetFromCaffe(_tf("reshape_and_slice_routines.prototxt"));
ASSERT_FALSE(net.empty());
net.setPreferableBackend(DNN_BACKEND_DEFAULT);
net.setPreferableTarget(targetId);
Mat input(6, 12, CV_32F);
RNG rng(0);
rng.fill(input, RNG::UNIFORM, -1, 1);
@@ -384,7 +387,12 @@ static void test_Reshape_Split_Slice_layers()
TEST(Layer_Test_Reshape_Split_Slice, Accuracy)
{
test_Reshape_Split_Slice_layers();
test_Reshape_Split_Slice_layers(DNN_TARGET_CPU);
}
OCL_TEST(Layer_Test_Reshape_Split_Slice, Accuracy)
{
test_Reshape_Split_Slice_layers(DNN_TARGET_OPENCL);
}
TEST(Layer_Conv_Elu, Accuracy)