New versions of Assign/ReadValue ops (#4055)

* new versions of assign/read value, squashed commits

* Assign/ReadValue base classes, code style

* update ie_ir_parser and conversion

* low latency transformation update to support Loop op

* ngraph code style

* fix build, refactoring

* fix unit tests

* fix unit tests again

* fix unit tests

* fix code style

* update comments

* ngraph codestyle

* fix low latency tests

* fix failed unit tests

* fix incorrect version of submodule

* fix review remarks

* ngraph code style

* fix ngraph tests

* fix low latency unit tests
This commit is contained in:
Ivan Tikhonov
2021-02-09 09:50:55 +03:00
committed by GitHub
parent 7eac2a1452
commit 6789c158fd
33 changed files with 675 additions and 386 deletions

View File

@@ -24,7 +24,7 @@ class Assign(Op):
super().__init__(graph, {
'type': self.op,
'op': self.op,
'version': 'opset3',
'version': 'opset6',
'infer': self.infer,
'in_ports_count': 1,
'out_ports_count': 1,

View File

@@ -24,7 +24,7 @@ class ReadValue(Op):
super().__init__(graph, {
'type': self.op,
'op': self.op,
'version': 'opset3',
'version': 'opset6',
'infer': self.infer,
'type_infer': self.type_infer,
'in_ports_count': 1,