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

Method inputs

python/paddle/base/framework.py:5302–5309  ·  view source on GitHub ↗

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

(self)

Source from the content-addressed store, hash-verified

5300
5301 @property
5302 def inputs(self):
5303 """
5304 Return the node inputs.
5305
5306 Returns:
5307 list(IrNode): node inputs wrapped by IrNode.
5308 """
5309 return [IrNode(n) for n in self.node.inputs]
5310
5311 @property
5312 def outputs(self):

Callers 1

infershape_for_compositeFunction · 0.45

Calls 1

IrNodeClass · 0.70

Tested by

no test coverage detected