Skip to content

Commit

Permalink
Remove node_map from the GraphInfo (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
vivekkhandelwal1 authored Nov 21, 2023
1 parent 0daa8dd commit 372a1c1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion python/shark_turbine/importers/onnx_importer.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ class GraphInfo:
def __init__(self, model_info: ModelInfo, graph_proto: onnx.GraphProto):
self.model_info = model_info
self.graph_proto = graph_proto
self.node_map: dict[str, onnx.NodeProto] = {n.name: n for n in graph_proto.node}
self.initializer_map: dict[str, onnx.TensorProto] = {
n.name: n for n in graph_proto.initializer
}
Expand Down

0 comments on commit 372a1c1

Please sign in to comment.