Partial revert of "Add set_argument/s methods to nGraph Python API (#7196)" (#7657)

* Try to revert "Add set_argument/s methods to nGraph Python API (#7196)"

* Add native "CPU FuncTests"

* continueOnError: true

* Fix indent

* Add m_inputs.clear();

* Add set_argument(i++, output);

* Revert calling set_argument(i++, output);
Revert Windows Azure to prod
This commit is contained in:
Alexander Zhogov 2021-09-27 19:51:28 +03:00 committed by GitHub
parent 6ecfbd47e3
commit 66bf54898c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -162,7 +162,9 @@ void ov::Node::set_arguments(const OutputVector& arguments) {
// Add this node as a user of each argument.
size_t i = 0;
for (auto& output : arguments) {
set_argument(i++, output);
auto output_node = output.get_node();
auto& output_descriptor = output_node->m_outputs.at(output.get_index());
m_inputs.emplace_back(this, i++, output_descriptor);
}
}