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

Function _full_name_struct

python/paddle/base/framework.py:1381–1388  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1379
1380
1381def _full_name_struct():
1382 global _name_struct
1383 struct = _name_struct
1384 name = ""
1385 while struct:
1386 name = struct.name() + "/" + name
1387 struct = struct.parent()
1388 return name
1389
1390
1391def _full_name_scope():

Callers 2

name_structFunction · 0.85
__init__Method · 0.85

Calls 2

nameMethod · 0.45
parentMethod · 0.45

Tested by

no test coverage detected