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

Function _full_name_scope

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

Source from the content-addressed store, hash-verified

1389
1390
1391def _full_name_scope():
1392 global _name_scope
1393 scope = _name_scope
1394 name = ""
1395 while scope:
1396 name = scope.name() + "/" + name
1397 scope = scope.parent()
1398 return name
1399
1400
1401def generate_control_dev_var_name():

Callers 1

__init__Method · 0.85

Calls 2

nameMethod · 0.45
parentMethod · 0.45

Tested by

no test coverage detected