Skip to content
Snippets Groups Projects
Commit 47ee48d5 authored by Thibault Allenet's avatar Thibault Allenet
Browse files

Add documentation for insertParent

parent a1cbe41e
No related branches found
No related tags found
1 merge request!10Implement insertParent function in GraphView
Pipeline #31927 passed
...@@ -323,11 +323,11 @@ public: ...@@ -323,11 +323,11 @@ public:
/** /**
* @brief Insert a node (newParentNode) as a parent of the passed node (childNode). * @brief Insert a node (newParentNode) as a parent of the passed node (childNode).
* *
* @param childNode * @param childNode Node that gets a new parent.
* @param newParentNode * @param newParentNode Inserted Node.
* @param childInputTensorIdx * @param childInputTensorIdx Index of the input Tensor for the childNode linked to the inserted Node output.
* @param newParentInputTensorIdx * @param newParentInputTensorIdx Index of the input Tensor for the newParentNode linked to the former parent of childNode.
* @param newParentOutputTensorIdx * @param newParentOutputTensorIdx Index of the output Tensor for the newParentNode linked to the childNode's input Tensor.
*/ */
void insertParent(NodePtr childNode, void insertParent(NodePtr childNode,
NodePtr newParentNode, NodePtr newParentNode,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment