Returns the result of matching op/tensor against this pattern.
(self, op, tensor)
| 30 | |
| 31 | @abc.abstractmethod |
| 32 | def match(self, op, tensor): |
| 33 | """Returns the result of matching op/tensor against this pattern.""" |
| 34 | raise NotImplementedError('Method "match" not implemented.') |
| 35 | |
| 36 | |
| 37 | class OpTypePattern(Pattern): |
no outgoing calls