|
2 | 2 | # Copyright (C) 2018-2024 Intel Corporation
|
3 | 3 | # SPDX-License-Identifier: Apache-2.0
|
4 | 4 | import numpy as np
|
| 5 | +import pytest |
5 | 6 |
|
6 | 7 | from openvino import PartialShape
|
7 | 8 | from openvino.runtime import opset13 as ops
|
8 |
| -from openvino.runtime.passes import Matcher, WrapType, Or, AnyInput |
| 9 | +from openvino.runtime.passes import Matcher, WrapType, Or, AnyInput, Optional |
9 | 10 | from openvino.runtime.passes import (
|
10 | 11 | consumers_count,
|
11 | 12 | has_static_dim,
|
@@ -85,6 +86,99 @@ def test_any_input_predicate():
|
85 | 86 | assert not matcher.match(slope)
|
86 | 87 |
|
87 | 88 |
|
| 89 | +def test_optional_full_match(): |
| 90 | + model_input = ops.parameter(PartialShape.dynamic()) |
| 91 | + model_abs = ops.abs(model_input) |
| 92 | + model_relu = ops.relu(model_abs.output(0)) |
| 93 | + |
| 94 | + pattern_abs = Optional(["opset13.Abs"]) |
| 95 | + pattern_relu = ops.relu(pattern_abs.output(0)) |
| 96 | + |
| 97 | + matcher = Matcher(pattern_relu, "FindRelu") |
| 98 | + assert matcher.match(model_relu) |
| 99 | + |
| 100 | + |
| 101 | +@pytest.mark.skip("Optional is not working properly yet CVS-136454") |
| 102 | +def test_optional_half_match(): |
| 103 | + model_input = ops.parameter(PartialShape.dynamic()) |
| 104 | + model_relu = ops.relu(model_input) |
| 105 | + model_relu1 = ops.relu(model_relu.output(0)) |
| 106 | + |
| 107 | + pattern_abs = Optional(["opset13.Abs"]) |
| 108 | + pattern_relu = ops.relu(pattern_abs.output(0)) |
| 109 | + |
| 110 | + matcher = Matcher(pattern_relu, "FindRelu") |
| 111 | + assert matcher.match(model_relu1) |
| 112 | + |
| 113 | + |
| 114 | +@pytest.mark.skip("Optional is not working properly yet CVS-136454") |
| 115 | +def test_optional_one_node(): |
| 116 | + model_input = ops.parameter(PartialShape.dynamic()) |
| 117 | + model_relu = ops.relu(model_input) |
| 118 | + model_abs = ops.abs(model_input) |
| 119 | + |
| 120 | + assert Matcher(Optional(["opset13.Relu"]), "OneNodeTest").match(model_relu) |
| 121 | + assert not Matcher(Optional(["opset13.Abs"]), "OneNodeTest").match(model_relu) |
| 122 | + |
| 123 | + assert not Matcher(Optional(["opset13.Relu"]), "OneNodeTest").match(model_abs) |
| 124 | + |
| 125 | + assert Matcher(Optional(["opset13.Parameter"]), "OneNodeTest").match(ops.parameter(PartialShape.dynamic())) |
| 126 | + assert not Matcher(Optional(["opset13.Relu"]), "OneNodeTest").match(ops.parameter(PartialShape.dynamic())) |
| 127 | + |
| 128 | + |
| 129 | +@pytest.mark.skip("Optional is not working properly yet CVS-136454") |
| 130 | +def test_optional_predicate(): |
| 131 | + model_input = ops.parameter(PartialShape.dynamic()) |
| 132 | + model_add = ops.add(model_input, model_input) |
| 133 | + model_relu = ops.relu(model_add.output(0)) |
| 134 | + model_abs = ops.abs(model_add.output(0)) |
| 135 | + |
| 136 | + assert Matcher(Optional(["opset13.Relu"], lambda x: True), "TestInputPredicate").match(model_relu) |
| 137 | + assert not Matcher(Optional(["opset13.Relu"], lambda x: False), "TestInputPredicate").match(model_relu) |
| 138 | + assert Matcher(Optional(["opset13.Add"], consumers_count(2)), "FindPredicate").match(model_add) |
| 139 | + assert not Matcher(Optional(["opset13.Add"], consumers_count(1)), "FindPredicate").match(model_add) |
| 140 | + assert Matcher(Optional(["opset13.Abs", "opset13.Result"], consumers_count(0)), "FindPredicate").match(model_abs) |
| 141 | + |
| 142 | + |
| 143 | +def test_optional_with_input(): |
| 144 | + model_input = ops.parameter(PartialShape.dynamic()) |
| 145 | + model_add = ops.add(model_input, model_input) |
| 146 | + model_relu = ops.relu(model_add.output(0)) |
| 147 | + |
| 148 | + assert Matcher(Optional(["opset13.Relu"], model_add.output(0)), "TestInput").match(model_relu) |
| 149 | + assert not Matcher(Optional(["opset13.Cos"], model_add.output(0)), "TestInput").match(model_relu) |
| 150 | + |
| 151 | + |
| 152 | +def test_optional_with_input_and_predicate(): |
| 153 | + model_input = ops.parameter(PartialShape.dynamic()) |
| 154 | + model_add = ops.add(model_input, model_input) |
| 155 | + model_relu = ops.relu(model_add.output(0)) |
| 156 | + |
| 157 | + pattern_add = ops.add(AnyInput(), AnyInput()) |
| 158 | + |
| 159 | + assert Matcher(Optional(["opset13.Relu"], pattern_add.output(0), lambda x: True), "TestInputPredicate").match(model_relu) |
| 160 | + assert not Matcher(Optional(["opset13.Relu"], pattern_add.output(0), lambda x: False), "TestInputPredicate").match(model_relu) |
| 161 | + |
| 162 | + |
| 163 | +def test_optional_with_input_node(): |
| 164 | + model_input = ops.parameter(PartialShape.dynamic()) |
| 165 | + model_add = ops.add(model_input, model_input) |
| 166 | + model_relu = ops.relu(model_add.output(0)) |
| 167 | + |
| 168 | + assert Matcher(Optional(["opset13.Relu"], model_add), "TestInputNode").match(model_relu) |
| 169 | + assert not Matcher(Optional(["opset13.Cos"], model_add), "TestInputNode").match(model_relu) |
| 170 | + |
| 171 | + |
| 172 | +def test_optional_with_input_node_and_predicate(): |
| 173 | + model_input = ops.parameter(PartialShape.dynamic()) |
| 174 | + model_add = ops.add(model_input, model_input) |
| 175 | + model_relu = ops.relu(model_add.output(0)) |
| 176 | + |
| 177 | + assert Matcher(Optional(["opset13.Relu"], model_add, lambda x: True), "TestInputNodePredicate").match(model_relu) |
| 178 | + assert not Matcher(Optional(["opset13.Relu"], model_add, lambda x: False), "TestInputNodePredicate").match(model_relu) |
| 179 | + assert not Matcher(Optional(["opset13.Cos"], model_add, lambda x: True), "TestInputNodePredicate").match(model_relu) |
| 180 | + |
| 181 | + |
88 | 182 | def test_all_predicates():
|
89 | 183 | static_param = ops.parameter(PartialShape([1, 3, 22, 22]), np.float32)
|
90 | 184 | dynamic_param = ops.parameter(PartialShape([-1, 6]), np.compat.long)
|
|
0 commit comments