fix group_norm (#15727)

* fix group_norm

* test=develop
revert-15774-anakin_subgraph_engine
Dun 6 years ago committed by GitHub
parent e4b9fcdbd2
commit f7b768d364
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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",

Loading…
Cancel
Save