* Mark all failed ONNX layer tests as XFail
* Add additional xfailed marks
* Add one more failed tests into XFail
* Add conditions for CPU/GPU failures
* Revert "Add conditions for CPU/GPU failures"
This reverts commit 790524c59c.
* Add failures separation for CPU/GPU
* Replace all xfail with skip
223 lines
9.2 KiB
Python
223 lines
9.2 KiB
Python
# Copyright (C) 2018-2023 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
import pytest
|
|
|
|
from common.onnx_layer_test_class import OnnxRuntimeLayerTest
|
|
|
|
|
|
class TestSqueeze(OnnxRuntimeLayerTest):
|
|
def create_squeeze_net(self, axes, input_shape, output_shape, ir_version):
|
|
"""
|
|
ONNX net IR net
|
|
|
|
Input->Squeeze(axes=0)->Output => Input->Reshape
|
|
|
|
"""
|
|
|
|
#
|
|
# Create ONNX model
|
|
#
|
|
|
|
import onnx
|
|
from onnx import helper
|
|
from onnx import TensorProto
|
|
|
|
input = helper.make_tensor_value_info('input', TensorProto.FLOAT, input_shape)
|
|
output = helper.make_tensor_value_info('output', TensorProto.FLOAT, output_shape)
|
|
|
|
node_squeeze_def = onnx.helper.make_node(
|
|
'Squeeze',
|
|
inputs=['input'],
|
|
outputs=['output'],
|
|
axes=axes
|
|
)
|
|
|
|
# Create the graph (GraphProto)
|
|
graph_def = helper.make_graph(
|
|
[node_squeeze_def],
|
|
'test_squeeze_model',
|
|
[input],
|
|
[output],
|
|
)
|
|
|
|
# Create the model (ModelProto)
|
|
onnx_net = helper.make_model(graph_def, producer_name='test_squeeze_model')
|
|
|
|
#
|
|
# Create reference IR net
|
|
# Please, specify 'type': 'Input' for input node
|
|
# Moreover, do not forget to validate ALL layer attributes!!!
|
|
#
|
|
|
|
ref_net = None
|
|
|
|
return onnx_net, ref_net
|
|
|
|
def create_squeeze_net_const(self, axes, input_shape, output_shape, ir_version):
|
|
"""
|
|
ONNX net IR net
|
|
|
|
Input->Concat(+squeezed const)->Output => Input->Concat(+const)
|
|
|
|
"""
|
|
|
|
#
|
|
# Create ONNX model
|
|
#
|
|
|
|
import onnx
|
|
from onnx import helper
|
|
from onnx import TensorProto
|
|
import numpy as np
|
|
|
|
concat_axis = 0
|
|
concat_output_shape = output_shape.copy()
|
|
concat_output_shape[concat_axis] *= 2
|
|
|
|
input = helper.make_tensor_value_info('input', TensorProto.FLOAT, output_shape)
|
|
output = helper.make_tensor_value_info('output', TensorProto.FLOAT, concat_output_shape)
|
|
|
|
const_number = np.prod(input_shape)
|
|
constant = np.random.randint(-127, 127, const_number).astype(float)
|
|
constant = np.reshape(constant, input_shape)
|
|
|
|
node_const_def = onnx.helper.make_node(
|
|
'Constant',
|
|
inputs=[],
|
|
outputs=['const1'],
|
|
value=helper.make_tensor(
|
|
name='const_tensor',
|
|
data_type=TensorProto.FLOAT,
|
|
dims=constant.shape,
|
|
vals=constant.flatten(),
|
|
),
|
|
)
|
|
|
|
node_squeeze_def = onnx.helper.make_node(
|
|
'Squeeze',
|
|
inputs=['const1'],
|
|
outputs=['squeeze1'],
|
|
axes=axes
|
|
)
|
|
|
|
node_concat_def = onnx.helper.make_node(
|
|
'Concat',
|
|
inputs=['input', 'squeeze1'],
|
|
outputs=['output'],
|
|
axis=concat_axis
|
|
)
|
|
|
|
# Create the graph (GraphProto)
|
|
graph_def = helper.make_graph(
|
|
[node_const_def, node_squeeze_def, node_concat_def],
|
|
'test_squeeze_model',
|
|
[input],
|
|
[output],
|
|
)
|
|
|
|
# Create the model (ModelProto)
|
|
onnx_net = helper.make_model(graph_def, producer_name='test_squeeze_model')
|
|
|
|
#
|
|
# Create reference IR net
|
|
# Please, specify 'type': 'Input' for input node
|
|
# Moreover, do not forget to validate ALL layer attributes!!!
|
|
#
|
|
|
|
ref_net = None
|
|
|
|
return onnx_net, ref_net
|
|
|
|
test_data_5D = [
|
|
dict(axes=[0], input_shape=[1, 2, 3, 10, 10], output_shape=[2, 3, 10, 10]),
|
|
dict(axes=[1], input_shape=[2, 1, 3, 10, 10], output_shape=[2, 3, 10, 10]),
|
|
dict(axes=[2], input_shape=[2, 3, 1, 10, 10], output_shape=[2, 3, 10, 10]),
|
|
dict(axes=[3], input_shape=[2, 3, 10, 1, 10], output_shape=[2, 3, 10, 10]),
|
|
dict(axes=[4], input_shape=[2, 3, 10, 10, 1], output_shape=[2, 3, 10, 10]),
|
|
dict(axes=[0, 1], input_shape=[1, 1, 3, 10, 10], output_shape=[3, 10, 10]),
|
|
dict(axes=[0, 2], input_shape=[1, 3, 1, 10, 10], output_shape=[3, 10, 10]),
|
|
dict(axes=[0, 3], input_shape=[1, 3, 10, 1, 10], output_shape=[3, 10, 10]),
|
|
dict(axes=[0, 4], input_shape=[1, 3, 10, 10, 1], output_shape=[3, 10, 10]),
|
|
dict(axes=[1, 2], input_shape=[3, 1, 1, 10, 10], output_shape=[3, 10, 10]),
|
|
dict(axes=[1, 3], input_shape=[3, 1, 10, 1, 10], output_shape=[3, 10, 10]),
|
|
dict(axes=[1, 4], input_shape=[3, 1, 10, 10, 1], output_shape=[3, 10, 10]),
|
|
dict(axes=[2, 3], input_shape=[3, 10, 1, 1, 10], output_shape=[3, 10, 10]),
|
|
dict(axes=[2, 4], input_shape=[3, 10, 1, 10, 1], output_shape=[3, 10, 10]),
|
|
dict(axes=[3, 4], input_shape=[3, 10, 10, 1, 1], output_shape=[3, 10, 10]),
|
|
dict(axes=[0, 1, 2], input_shape=[1, 1, 1, 10, 10], output_shape=[10, 10]),
|
|
dict(axes=[0, 1, 3], input_shape=[1, 1, 10, 1, 10], output_shape=[10, 10]),
|
|
dict(axes=[0, 1, 4], input_shape=[1, 1, 10, 10, 1], output_shape=[10, 10]),
|
|
dict(axes=[0, 2, 3], input_shape=[1, 10, 1, 1, 10], output_shape=[10, 10]),
|
|
dict(axes=[0, 2, 4], input_shape=[1, 10, 1, 10, 1], output_shape=[10, 10]),
|
|
dict(axes=[0, 3, 4], input_shape=[1, 10, 10, 1, 1], output_shape=[10, 10]),
|
|
dict(axes=[1, 2, 3], input_shape=[10, 1, 1, 1, 10], output_shape=[10, 10]),
|
|
dict(axes=[1, 2, 4], input_shape=[10, 1, 1, 10, 1], output_shape=[10, 10]),
|
|
dict(axes=[1, 3, 4], input_shape=[10, 1, 10, 1, 1], output_shape=[10, 10]),
|
|
dict(axes=[2, 3, 4], input_shape=[10, 10, 1, 1, 1], output_shape=[10, 10])]
|
|
|
|
test_data_4D = [
|
|
dict(axes=[0], input_shape=[1, 3, 10, 10], output_shape=[3, 10, 10]),
|
|
dict(axes=[1], input_shape=[3, 1, 10, 10], output_shape=[3, 10, 10]),
|
|
dict(axes=[2], input_shape=[3, 10, 1, 10], output_shape=[3, 10, 10]),
|
|
dict(axes=[3], input_shape=[3, 10, 10, 1], output_shape=[3, 10, 10]),
|
|
dict(axes=[0, 1], input_shape=[1, 1, 10, 10], output_shape=[10, 10]),
|
|
dict(axes=[0, 2], input_shape=[1, 10, 1, 10], output_shape=[10, 10]),
|
|
dict(axes=[0, 3], input_shape=[1, 10, 10, 1], output_shape=[10, 10]),
|
|
dict(axes=[1, 2], input_shape=[10, 1, 1, 10], output_shape=[10, 10]),
|
|
dict(axes=[1, 3], input_shape=[10, 1, 10, 1], output_shape=[10, 10]),
|
|
dict(axes=[2, 3], input_shape=[10, 10, 1, 1], output_shape=[10, 10])]
|
|
|
|
test_data_3D = [
|
|
dict(axes=[0], input_shape=[1, 10, 10], output_shape=[10, 10]),
|
|
dict(axes=[1], input_shape=[10, 1, 10], output_shape=[10, 10]),
|
|
dict(axes=[2], input_shape=[10, 10, 1], output_shape=[10, 10])]
|
|
|
|
@pytest.mark.parametrize("params", test_data_5D)
|
|
@pytest.mark.nightly
|
|
@pytest.mark.skip(reason='GREEN_SUITE')
|
|
def test_squeeze_5D(self, params, ie_device, precision, ir_version, temp_dir, use_old_api):
|
|
self._test(*self.create_squeeze_net(**params, ir_version=ir_version), ie_device, precision,
|
|
ir_version,
|
|
temp_dir=temp_dir, use_old_api=use_old_api)
|
|
|
|
@pytest.mark.parametrize("params", test_data_4D)
|
|
@pytest.mark.nightly
|
|
@pytest.mark.skip(reason='GREEN_SUITE')
|
|
def test_squeeze_4D(self, params, ie_device, precision, ir_version, temp_dir, use_old_api):
|
|
self._test(*self.create_squeeze_net(**params, ir_version=ir_version), ie_device, precision,
|
|
ir_version,
|
|
temp_dir=temp_dir, use_old_api=use_old_api)
|
|
|
|
@pytest.mark.parametrize("params", test_data_3D)
|
|
@pytest.mark.nightly
|
|
@pytest.mark.skip(reason='GREEN_SUITE')
|
|
def test_squeeze_3D(self, params, ie_device, precision, ir_version, temp_dir, use_old_api):
|
|
self._test(*self.create_squeeze_net(**params, ir_version=ir_version), ie_device, precision,
|
|
ir_version,
|
|
temp_dir=temp_dir, use_old_api=use_old_api)
|
|
|
|
@pytest.mark.parametrize("params", test_data_5D)
|
|
@pytest.mark.nightly
|
|
@pytest.mark.skip(reason='GREEN_SUITE')
|
|
def test_squeeze_const_5D(self, params, ie_device, precision, ir_version, temp_dir, use_old_api):
|
|
self._test(*self.create_squeeze_net_const(**params, ir_version=ir_version), ie_device,
|
|
precision, ir_version,
|
|
temp_dir=temp_dir, use_old_api=use_old_api)
|
|
|
|
@pytest.mark.parametrize("params", test_data_4D)
|
|
@pytest.mark.nightly
|
|
@pytest.mark.skip(reason='GREEN_SUITE')
|
|
def test_squeeze_const_4D(self, params, ie_device, precision, ir_version, temp_dir, use_old_api):
|
|
self._test(*self.create_squeeze_net_const(**params, ir_version=ir_version), ie_device,
|
|
precision, ir_version,
|
|
temp_dir=temp_dir, use_old_api=use_old_api)
|
|
|
|
@pytest.mark.parametrize("params", test_data_3D)
|
|
@pytest.mark.nightly
|
|
@pytest.mark.skip(reason='GREEN_SUITE')
|
|
def test_squeeze_const_3D(self, params, ie_device, precision, ir_version, temp_dir, use_old_api):
|
|
self._test(*self.create_squeeze_net_const(**params, ir_version=ir_version), ie_device,
|
|
precision, ir_version,
|
|
temp_dir=temp_dir, use_old_api=use_old_api)
|