Commit d85311a8 authored by tsocha's avatar tsocha Committed by Sang Ik Lee

[ONNX] change [] into .at() (#2529)

* [ONNX] change [] into .at()

* Update graph.cpp
parent 482aa5b2
......@@ -140,7 +140,7 @@ namespace ngraph
// https://github.com/onnx/onnx/blob/master/docs/IR.md#optional-inputs-and-outputs
for (std::size_t i{0}; i < node.get_outputs_size(); ++i)
{
m_ng_node_cache[node.output(i)] = ng_nodes[i];
m_ng_node_cache[node.output(i)] = ng_nodes.at(i);
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment