forked from mindspore-Ecosystem/mindspore
!21347 fix the variable init subgraph name using training with GE
Merge pull request !21347 from chenmai1102/cm_master
This commit is contained in:
commit
1a6c874e1b
|
@ -543,7 +543,7 @@ class _Executor:
|
|||
self._build_data_graph(obj, phase)
|
||||
|
||||
if "export" not in phase:
|
||||
init_phase = "init_subgraph" + "." + str(obj.create_time)
|
||||
init_phase = "init_subgraph." + str(obj.create_time) + "." + str(id(obj))
|
||||
_exec_init_graph(obj, init_phase)
|
||||
elif "export" in phase:
|
||||
self._build_data_graph(obj, phase)
|
||||
|
|
Loading…
Reference in New Issue