Implement insertParent function in GraphView
1 unresolved thread
1 unresolved thread
Merge request reports
Activity
Filter activity
changed milestone to %v0.1.0
requested review from @cmoineau
assigned to @thibaultallenet
Nice merge request @thibaultallenet
320 320 321 321 void link(std::string name1_inID, std::string name2_outID); 322 322 323 void insert(Node &newNode, Node &inNode, std::initializer_list<Node> outNodes, 324 IOIndex_t tensorIdx); 323 /** 324 * @brief Insert a node (newParentNode) as a parent of the passed node (childNode). 325 * 326 * @param childNode 327 * @param newParentNode 328 * @param childInputTensorIdx 329 * @param newParentInputTensorIdx 330 * @param newParentOutputTensorIdx - Comment on lines +326 to +330
326 * @param childNode 327 * @param newParentNode 328 * @param childInputTensorIdx 329 * @param newParentInputTensorIdx 330 * @param newParentOutputTensorIdx 326 * @param childNode Node that gets a new parent. 327 * @param newParentNode Inserted Node. 328 * @param childInputTensorIdx Index of the input Tensor for the childNode linked to the inserted Node output. 329 * @param newParentInputTensorIdx Index of the input Tensor for the newParentNode linked to the former parent of childNode. 330 * @param newParentOutputTensorIdx Index of the output Tensor for the newParentNode linked to the childNode's input Tensor. changed this line in version 2 of the diff
mentioned in commit 44afa3b4
Please register or sign in to reply