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

Method all_nodes

python/paddle/base/framework.py:5624–5628  ·  view source on GitHub ↗

Return all nodes included in the graph as a set.

(self)

Source from the content-addressed store, hash-verified

5622 return self._for_test
5623
5624 def all_nodes(self):
5625 """
5626 Return all nodes included in the graph as a set.
5627 """
5628 return {IrNode(node) for node in self.graph.nodes()}
5629
5630 def all_var_nodes(self):
5631 """

Calls 2

IrNodeClass · 0.70
nodesMethod · 0.45

Tested by

no test coverage detected