From b2816dc1eca78747ed929f7e28a83b3fc42b5fc2 Mon Sep 17 00:00:00 2001 From: Evgeny Latkin Date: Tue, 2 Jun 2020 17:41:19 +0300 Subject: [PATCH] [IE][Myriad] Gather: add test case (#644) --- .../functional/vpu/common/layers/myriad_layers_gather_test.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/inference-engine/tests_deprecated/functional/vpu/common/layers/myriad_layers_gather_test.cpp b/inference-engine/tests_deprecated/functional/vpu/common/layers/myriad_layers_gather_test.cpp index e860557..59fe2a7 100644 --- a/inference-engine/tests_deprecated/functional/vpu/common/layers/myriad_layers_gather_test.cpp +++ b/inference-engine/tests_deprecated/functional/vpu/common/layers/myriad_layers_gather_test.cpp @@ -7,6 +7,8 @@ using namespace testing; INSTANTIATE_TEST_CASE_P(accuracy, myriadLayerGather_smoke, + // Synthetic tests + // input shape, indices shape, axis, precision Values(GatherTestParams { {36549, 1024}, {16}, 0, "FP16" }, GatherTestParams { {10}, {10}, 0, "FP16" }, GatherTestParams { {36549, 1024}, {10}, 0, "FP16" }, @@ -24,4 +26,9 @@ INSTANTIATE_TEST_CASE_P(accuracy, myriadLayerGather_smoke, GatherTestParams { {30522, 768}, {1, 128, 1}, 0, "I32" }, GatherTestParams { {30522, 768}, {1, 128, 1}, 1, "I32" }, GatherTestParams { {6, 12, 10, 24}, {15, 4, 20, 5}, 0, "I32" }, - GatherTestParams { {6, 12, 10, 24}, {15, 4, 20, 5}, 3, "I32" })); + GatherTestParams { {6, 12, 10, 24}, {15, 4, 20, 5}, 3, "I32" }, + // Customer use-cases + // From: Mask R-CNN + // input shape, indices shape, axis, precision + GatherTestParams { {1000, 3}, {1}, 1, "FP16" }, + GatherTestParams { {1000, 3}, {1}, 1, "I32" })); -- 2.7.4