* Removed test-generator from all MO requirement files except the dev one * Moved all MO unit tests files to a separate directory * Added __init__.py files to the tests directory. Fixed importing paths for some unit tests * Fixed imports in all unit tests. Moved all unit test related files from the MO code to the dedicated directory * Renamed directory with unit test utils * Updated imports in unit tests
103 lines
2.6 KiB
Python
103 lines
2.6 KiB
Python
# Copyright (C) 2018-2021 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
import unittest
|
|
|
|
import numpy as np
|
|
from generator import generator, generate
|
|
|
|
from extensions.ops.gatherelements import GatherElements
|
|
from mo.front.common.partial_infer.utils import int64_array
|
|
from mo.graph.graph import Node
|
|
from unit_tests.utils.graph import build_graph, regular_op_with_empty_data, result, connect, \
|
|
valued_const_with_data
|
|
|
|
|
|
@generator
|
|
class GatherElementsInferTest(unittest.TestCase):
|
|
@generate(*[
|
|
([[1, 2],
|
|
[3, 4]],
|
|
[[0, 1],
|
|
[0, 0]],
|
|
0, # axis
|
|
[[1, 4], # ref_res
|
|
[1, 2]]),
|
|
|
|
([[1, 2],
|
|
[3, 4]],
|
|
[[0, 1],
|
|
[0, 0]],
|
|
1, # axis
|
|
[[1, 2], # ref_res
|
|
[3, 3]]),
|
|
|
|
([[1, 2, 3],
|
|
[4, 5, 6],
|
|
[7, 8, 9]],
|
|
[[1, 2, 0],
|
|
[2, 0, 0]],
|
|
0, # axis
|
|
[[4, 8, 3], # ref_res
|
|
[7, 2, 3]]),
|
|
|
|
([[1, 2],
|
|
[3, 4]],
|
|
[[0, 1],
|
|
[0, 0]],
|
|
-1, # axis
|
|
[[1, 2], # ref_res
|
|
[3, 3]]),
|
|
|
|
([ # 3D case
|
|
[[1, 2],
|
|
[3, 4]],
|
|
[[5, 6],
|
|
[7, 8]],
|
|
[[9, 10],
|
|
[11, 12]]
|
|
],
|
|
[
|
|
[[1, 0],
|
|
[0, 1]],
|
|
[[1, 1],
|
|
[1, 0]],
|
|
[[0, 0],
|
|
[1, 1]]
|
|
],
|
|
-1, # axis
|
|
[
|
|
[[2, 1],
|
|
[3, 4]],
|
|
[[6, 6],
|
|
[8, 7]],
|
|
[[9, 9],
|
|
[12, 12]]
|
|
]),
|
|
])
|
|
|
|
def test_gatherelements_value_infer(self, data, indices, axis, ref_res):
|
|
nodes = {
|
|
**valued_const_with_data('data', int64_array(data)),
|
|
**valued_const_with_data('indices', int64_array(indices)),
|
|
**regular_op_with_empty_data('gather_elements', {'op': 'GatherElements', 'axis': axis}),
|
|
**result()
|
|
}
|
|
|
|
graph = build_graph(nodes_attrs=nodes, edges=[
|
|
*connect('data', '0:gather_elements'),
|
|
*connect('indices', '1:gather_elements'),
|
|
*connect('gather_elements', 'output')
|
|
], nodes_with_edges_only=True)
|
|
graph.stage = 'middle'
|
|
|
|
gather_el_node = Node(graph, 'gather_elements')
|
|
GatherElements.infer(gather_el_node)
|
|
|
|
res_output_shape = gather_el_node.out_node().shape
|
|
self.assertTrue(np.array_equal(int64_array(ref_res).shape, res_output_shape))
|
|
|
|
res_output_value = gather_el_node.out_node().value
|
|
if res_output_value is not None:
|
|
self.assertTrue(np.array_equal(int64_array(ref_res), res_output_value))
|