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

Function parse_debug_info

python/paddle/utils/fwd_graph_utils.py:109–115  ·  view source on GitHub ↗
(debug_str)

Source from the content-addressed store, hash-verified

107
108
109def parse_debug_info(debug_str):
110 result = {"API_Name": None, "Input": [], "Output": []}
111
112 result["API_Name"] = _parse_api_name(debug_str)
113 result["Input"] = _parse_input_tensors(debug_str)
114 result["Output"] = _parse_output_tensors(debug_str)
115 return result
116
117
118class Edge:

Callers 1

build_graphMethod · 0.85

Calls 3

_parse_api_nameFunction · 0.85
_parse_input_tensorsFunction · 0.85
_parse_output_tensorsFunction · 0.85

Tested by

no test coverage detected