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

Method inputs

python/paddle/base/framework.py:5401–5408  ·  view source on GitHub ↗

Return the node inputs. Returns: list(IrOpNode): node inputs wrapped by IrOpNode.

(self)

Source from the content-addressed store, hash-verified

5399
5400 @property
5401 def inputs(self):
5402 """
5403 Return the node inputs.
5404
5405 Returns:
5406 list(IrOpNode): node inputs wrapped by IrOpNode.
5407 """
5408 return [IrOpNode(n) for n in self.node.inputs]
5409
5410 @property
5411 def outputs(self):

Callers

nothing calls this directly

Calls 1

IrOpNodeClass · 0.85

Tested by

no test coverage detected