* Add support api 2.0 * Upd imports * Update onnx_tests * Upd tenserflow_tests * Fix test_split_concat.py * Fixed comparing
89 lines
3.6 KiB
Python
89 lines
3.6 KiB
Python
# Copyright (C) 2018-2022 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
import pytest
|
|
|
|
from common.tf_layer_test_class import CommonTFLayerTest
|
|
|
|
|
|
class TestSpaceToBatch(CommonTFLayerTest):
|
|
def create_space_to_batch_net(self, in_shape, pads_value, block_shape_value, out_shape,
|
|
ir_version, use_new_frontend):
|
|
"""
|
|
Tensorflow net IR net
|
|
|
|
Input->SpaceToBatch => Input->SpaceToBatch
|
|
|
|
"""
|
|
|
|
#
|
|
# Create Tensorflow model
|
|
#
|
|
|
|
import tensorflow as tf
|
|
|
|
tf.compat.v1.reset_default_graph()
|
|
|
|
# Create the graph and model
|
|
with tf.compat.v1.Session() as sess:
|
|
x = tf.compat.v1.placeholder(tf.float32, in_shape, 'Input')
|
|
pads = tf.constant(pads_value)
|
|
block_shape = tf.constant(block_shape_value)
|
|
tf.space_to_batch_nd(x, block_shape, pads, name='Operation')
|
|
|
|
tf.compat.v1.global_variables_initializer()
|
|
tf_net = sess.graph_def
|
|
|
|
#
|
|
# Create reference IR net
|
|
# Please, specify 'type': 'Input' for input node
|
|
# Moreover, do not forget to validate ALL layer attributes!!!
|
|
#
|
|
|
|
ref_net = None
|
|
|
|
return tf_net, ref_net
|
|
|
|
test_data_4D = [
|
|
dict(in_shape=[4, 1, 1, 3], block_shape_value=[1], pads_value=[[0, 0]],
|
|
out_shape=[4, 1, 1, 3]),
|
|
dict(in_shape=[1, 2, 2, 1], block_shape_value=[2, 2], pads_value=[[0, 0], [0, 0]],
|
|
out_shape=[4, 1, 1, 3]),
|
|
dict(in_shape=[1, 2, 2, 3], block_shape_value=[2, 2], pads_value=[[0, 0], [0, 0]],
|
|
out_shape=[4, 1, 1, 3]),
|
|
dict(in_shape=[1, 2, 9, 1], block_shape_value=[4, 3], pads_value=[[1, 1], [2, 4]],
|
|
out_shape=[12, 1, 1, 3]),
|
|
# todo: enable these tests after supporting the general case on CPU
|
|
# dict(in_shape=[1, 2, 1, 4], block_shape_value=[3, 2, 2], pads_value=[[1, 0], [0, 1], [1, 1]],
|
|
# out_shape=[12, 1, 1, 3]),
|
|
# dict(in_shape=[2, 3, 6, 5], block_shape_value=[2, 3, 3], pads_value=[[1, 0], [0, 0], [2, 2]],
|
|
# out_shape=[36, 2, 2, 3])
|
|
]
|
|
|
|
@pytest.mark.parametrize("params", test_data_4D)
|
|
@pytest.mark.nightly
|
|
def test_space_to_batch_4D(self, params, ie_device, precision, ir_version, temp_dir,
|
|
use_new_frontend, api_2):
|
|
self._test(*self.create_space_to_batch_net(**params, ir_version=ir_version,
|
|
use_new_frontend=use_new_frontend),
|
|
ie_device, precision, ir_version, temp_dir=temp_dir,
|
|
use_new_frontend=use_new_frontend, api_2=api_2)
|
|
|
|
test_data_5D = [
|
|
dict(in_shape=[3, 3, 4, 5, 2], block_shape_value=[3, 4, 2],
|
|
pads_value=[[1, 2], [0, 0], [3, 0]],
|
|
out_shape=[72, 2, 1, 4, 2]),
|
|
# todo: enable these tests after supporting the general case on CPU
|
|
# dict(in_shape=[3, 3, 4, 5, 2], block_shape_value=[3, 4, 2, 2],
|
|
# pads_value=[[1, 2], [0, 0], [3, 0], [0, 0]], out_shape=[144, 2, 1, 4, 1]),
|
|
]
|
|
|
|
@pytest.mark.parametrize("params", test_data_5D)
|
|
@pytest.mark.nightly
|
|
def test_space_to_batch_5D(self, params, ie_device, precision, ir_version, temp_dir,
|
|
use_new_frontend, api_2):
|
|
self._test(*self.create_space_to_batch_net(**params, ir_version=ir_version,
|
|
use_new_frontend=use_new_frontend),
|
|
ie_device, precision, ir_version, temp_dir=temp_dir,
|
|
use_new_frontend=use_new_frontend, api_2=api_2)
|