!30625 Fix the bug of duplicate key value of ActorSet

Merge pull request !30625 from caifubi/r1.6-actor-set-key-duplicate
This commit is contained in:
i-robot 2022-02-27 06:02:44 +00:00 committed by Gitee
commit 3ff5358b68
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 1 additions and 0 deletions

View File

@ -212,6 +212,7 @@ FuncGraphPtr BpropGraphFinalOptPass(const ResourcePtr &res) {
WITH(MsProfile::GetProfile()->Step("bprop_graph_final_opt"))[&bprop_graph_final_opt, &func_graph]() {
func_graph = bprop_graph_final_opt->step(func_graph, true);
};
func_graph = LiftingClone(func_graph);
Validate(func_graph);
return func_graph;
}