MCPcopy Create free account
hub / github.com/PaddlePaddle/Paddle / append_input

Method append_input

python/paddle/base/framework.py:5258–5265  ·  view source on GitHub ↗

Append a node in inputs. Args: node(IrNode): the node being appended.

(self, node)

Source from the content-addressed store, hash-verified

5256 self.node.remove_input(node.node)
5257
5258 def append_input(self, node):
5259 """
5260 Append a node in inputs.
5261
5262 Args:
5263 node(IrNode): the node being appended.
5264 """
5265 self.node.append_input(node.node)
5266
5267 def clear_outputs(self):
5268 """

Callers 3

update_input_linkMethod · 0.80
update_output_linkMethod · 0.80
link_toMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected