Skip test_mixed_dynamic_infer on ARM devices (#16397)

* Skip test

* Minor fix

* Minor update
This commit is contained in:
Przemyslaw Wysocki
2023-03-20 16:23:12 +01:00
committed by GitHub
parent 1c7b6a7b2a
commit 1e512af105

View File

@@ -1092,6 +1092,8 @@ def test_mixed_scalar_infer(device, shared_flag, input_data):
])
def test_mixed_dynamic_infer(device, shared_flag, input_data):
core = Core()
if device == "CPU" and "Intel" not in core.get_property(device, "FULL_DEVICE_NAME"):
pytest.skip("This test fails on ARM plugin because it doesn't support dynamic shapes.")
param0 = ops.parameter([], np.float32, name="data0")
param1 = ops.parameter(["?"], np.float32, name="data1")
add = ops.add(param0, param1, name="add")