Publishing 2019 R1 content
[platform/upstream/dldt.git] / model-optimizer / mo / ops / eltwise.py
index 18185f6..eba1956 100644 (file)
@@ -1,5 +1,5 @@
 """
- Copyright (c) 2018 Intel Corporation
+ Copyright (c) 2018-2019 Intel Corporation
 
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  limitations under the License.
 """
 
-import networkx as nx
 import numpy as np
 
 from mo.front.common.partial_infer.eltwise import eltwise_infer
+from mo.graph.graph import Graph
 from mo.ops.op import Op
 
 
 class Eltwise(Op):
     op = 'Eltwise'
 
-    def __init__(self, graph: nx.MultiDiGraph, attrs: dict):
+    def __init__(self, graph: Graph, attrs: dict):
         operations = {
             'sum': ('Add', lambda a, b: a + b),
             'mul': ('Mul', lambda a, b: a * b),
@@ -35,6 +35,8 @@ class Eltwise(Op):
             'type': 'Eltwise',  # a property of IE supported layer
             'op': operations[attrs['operation']][0],
             'infer': lambda node: eltwise_infer(node, operations[node.operation][1]),
+            'in_ports_count': 2,
+            'out_ports_count': 1,
         }, attrs)
 
     def supported_attrs(self):