[PyOV] skip dynamic test for arm (#15257) (#15271)

* [PyOV] skip dynamic test for arm

* Update src/bindings/python/tests/test_runtime/test_infer_request.py

Co-authored-by: Ilya Lavrenov <ilya.lavrenov@intel.com>

Co-authored-by: Ilya Lavrenov <ilya.lavrenov@intel.com>

Co-authored-by: Ilya Lavrenov <ilya.lavrenov@intel.com>
This commit is contained in:
Anastasia Kuporosova
2023-01-23 20:33:28 +01:00
committed by GitHub
parent c28bf68e30
commit 567eac4d8f

View File

@@ -864,6 +864,9 @@ def test_invalid_inputs(device):
def test_infer_dynamic_model(device):
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.")
param = ops.parameter(PartialShape([-1, -1]))
model = Model(ops.relu(param), [param])
compiled_model = core.compile_model(model, device)