* @brief Insert a node (newParentNode) as a parent of the passed node (childNode).
//@todo why some functions have separate inputs for Node and TensorID (such as here) while other put them in a pair (consistency would be nice)
* @brief Insert a node (newParentNode) as a parent of the passed node (childNode)
* and as a child of the current parent of the Node.
*
* @param childNode Node that gets a new parent.
* @param newParentNode Inserted Node.
...
...
@@ -544,6 +549,7 @@ public:
IOIndex_tnewParentOutputTensorIdx);
/**
//@todo seems messed up, imma skip it for now
* @brief Replace a set of Nodes in every available GraphView with a new set of Nodes if possible.
* Both sets should include all the necessary Producers.
* @details There are 3 cases of replacement:
...
...
@@ -569,6 +575,7 @@ public:
* @brief Clone the GraphView with shared Operators. It is a new GraphView, with cloned Nodes, but the new Nodes refer to the same Operators as the original ones.