* 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
79 lines
3.4 KiB
Python
79 lines
3.4 KiB
Python
# Copyright (C) 2018-2021 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
import unittest
|
|
|
|
import numpy as np
|
|
|
|
from extensions.ops.psroipooling import PSROIPoolingOp
|
|
from mo.graph.graph import Node
|
|
from unit_tests.utils.graph import build_graph
|
|
|
|
nodes_attributes = {'node_1': {'type': 'Identity', 'kind': 'op'},
|
|
'node_2': {'type': 'Identity', 'kind': 'op'},
|
|
'psroipool': {'type': 'PSROIPooling', 'kind': 'op'},
|
|
'node_3': {'type': 'Identity', 'kind': 'op'},
|
|
'op_output': { 'kind': 'op', 'op': 'Result'}
|
|
}
|
|
|
|
|
|
class TestPSROIPooling(unittest.TestCase):
|
|
def test_psroipool_infer_nchw(self):
|
|
graph = build_graph(nodes_attributes,
|
|
[('node_1', 'psroipool'),
|
|
('node_2', 'psroipool'),
|
|
('psroipool', 'node_3'),
|
|
('node_3', 'op_output')
|
|
],
|
|
{'node_3': {'shape': None},
|
|
'node_1': {'shape': np.array([1, 3, 227, 227])},
|
|
'node_2': {'shape': np.array([100, 5])},
|
|
'psroipool': {'output_dim': 4, 'group_size': 15}
|
|
})
|
|
graph.graph['layout'] = 'NCHW'
|
|
psroipool_node = Node(graph, 'psroipool')
|
|
PSROIPoolingOp.psroipooling_infer(psroipool_node)
|
|
exp_shape = np.array([100, 4, 15, 15])
|
|
res_shape = graph.node['node_3']['shape']
|
|
for i in range(0, len(exp_shape)):
|
|
self.assertEqual(exp_shape[i], res_shape[i])
|
|
|
|
def test_psroipool_infer_nhwc(self):
|
|
graph = build_graph(nodes_attributes,
|
|
[('node_1', 'psroipool'),
|
|
('node_2', 'psroipool'),
|
|
('psroipool', 'node_3'),
|
|
('node_3', 'op_output')
|
|
],
|
|
{'node_3': {'shape': None},
|
|
'node_1': {'shape': np.array([1, 227, 227, 3])},
|
|
'node_2': {'shape': np.array([100, 5])},
|
|
'psroipool': {'output_dim': 4, 'group_size': 15}
|
|
})
|
|
graph.graph['layout'] = 'NHWC'
|
|
psroipool_node = Node(graph, 'psroipool')
|
|
PSROIPoolingOp.psroipooling_infer(psroipool_node)
|
|
exp_shape = np.array([100, 15, 15, 4])
|
|
res_shape = graph.node['node_3']['shape']
|
|
for i in range(0, len(exp_shape)):
|
|
self.assertEqual(exp_shape[i], res_shape[i])
|
|
|
|
def test_psroipool_infer_no_shape(self):
|
|
graph = build_graph(nodes_attributes,
|
|
[('node_1', 'psroipool'),
|
|
('node_2', 'psroipool'),
|
|
('psroipool', 'node_3'),
|
|
('node_3', 'op_output')
|
|
],
|
|
{'node_3': {'shape': None},
|
|
'node_1': {'shape': None},
|
|
'node_2': {'shape': np.array([100, 5])},
|
|
'psroipool': {'output_dim': 4, 'group_size': 224}
|
|
})
|
|
graph.graph['layout'] = 'NCHW'
|
|
|
|
psroipool_node = Node(graph, 'psroipool')
|
|
PSROIPoolingOp.psroipooling_infer(psroipool_node)
|
|
res_shape = graph.node['node_3']['shape']
|
|
self.assertIsNone(res_shape)
|