Skip test_mixed_dynamic_infer on ARM devices (#16397)
* Skip test * Minor fix * Minor update
This commit is contained in:
committed by
GitHub
parent
1c7b6a7b2a
commit
1e512af105
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user