Skip to content
Snippets Groups Projects

Implement insertParent function in GraphView

Merged Thibault Allenet requested to merge graphView_insert into main
1 unresolved thread

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
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
    Suggested change
    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.
  • Thibault Allenet changed this line in version 2 of the diff

    changed this line in version 2 of the diff

  • Please register or sign in to reply
  • added 1 commit

    • 47ee48d5 - Add documentation for insertParent

    Compare with previous version

  • Maxence Naud approved this merge request

    approved this merge request

  • merged

  • Maxence Naud mentioned in commit 44afa3b4

    mentioned in commit 44afa3b4

  • Please register or sign in to reply
    Loading