megengine.traced_module.traced_module.InternalGraph.get_node_by_name¶
- InternalGraph.get_node_by_name(name=None, ignorecase=True, recursive=True)[源代码]¶
Filter Nodes by their full name.
The full name of the
Node
can be obtained by the following code# node : Node print("{:p}".format(node)) print(node.__format__("p")) # graph : InternalGraph print("{:p}".format(graph)) print(graph.__format__("p"))