Skip to content

Commit

Permalink
cherry-pick pr15727 (#15833)
Browse files Browse the repository at this point in the history
* fix group_norm (#15727)
  • Loading branch information
cjld authored and qingqing01 committed Feb 21, 2019
1 parent e5c8a19 commit 2307baf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/paddle/fluid/layers/nn.py
Expand Up @@ -3236,7 +3236,7 @@ def group_norm(input,
# create output
mean_out = helper.create_variable(dtype=dtype, stop_gradient=True)
variance_out = helper.create_variable(dtype=dtype, stop_gradient=True)
group_norm_out = helper.create_variable(dtype)
group_norm_out = helper.create_variable(dtype=dtype)

helper.append_op(
type="group_norm",
Expand Down

0 comments on commit 2307baf

Please sign in to comment.