Skip to content

Commit

Permalink
Clear extra attrs of reduce op in OpMaker (#45786)
Browse files Browse the repository at this point in the history
* clear extra attrs of reduce op in opmaker

* fix reduce_mean
  • Loading branch information
zyfncg committed Sep 7, 2022
1 parent 9163149 commit 63b6a11
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 4 deletions.
1 change: 1 addition & 0 deletions paddle/fluid/operators/reduce_ops/reduce_mean_op.cc
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ class ReduceMeanDoubleGradOpBaseMaker : public imperative::GradOpBaseMakerBase {
op.SetType("reduce_mean");
op.SetInput("X", x_gg);
op.SetAttrMap(Attrs());
op.SetDefaultAttrsMap(DefaultAttrsMap());
op.SetOutput("Out", out_grads);
}
return node;
Expand Down
4 changes: 0 additions & 4 deletions paddle/fluid/operators/reduce_ops/reduce_op.h
Original file line number Diff line number Diff line change
Expand Up @@ -718,10 +718,6 @@ class ReduceOpMaker : public framework::OpProtoAndCheckerMaker {
"(int, default -1)"
"The dtype of output, default value is -1, the dtype is same as intput")
.SetDefault(-1);
AddAttr<bool>("use_mkldnn",
"(bool, default false) Only used in mkldnn kernel")
.SetDefault(false)
.AsExtra();
AddComment(string::Sprintf(R"DOC(
%s Operator.
Expand Down
48 changes: 48 additions & 0 deletions paddle/phi/api/yaml/api_compat.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,11 @@
inputs: {x: X}
outputs: {out: Out}

- api : frobenius_norm
backward : frobenius_norm_grad
extra :
attrs : [bool use_mkldnn = false]

- api : gelu
backward : gelu_grad
extra :
Expand Down Expand Up @@ -288,6 +293,49 @@
outputs :
out : Out

- api : reduce_all
extra :
attrs : [bool use_mkldnn = false]

- api : reduce_amax
backward : reduce_amax_grad
extra :
attrs : [bool use_mkldnn = false]

- api : reduce_amin
backward : reduce_amin_grad
extra :
attrs : [bool use_mkldnn = false]

- api : reduce_any
extra :
attrs : [bool use_mkldnn = false]

- api : reduce_max
backward : reduce_max_grad
extra :
attrs : [bool use_mkldnn = false]

- api : reduce_mean
backward : reduce_mean_grad
extra :
attrs : [bool use_mkldnn = false]

- api : reduce_min
backward : reduce_min_grad
extra :
attrs : [bool use_mkldnn = false]

- api : reduce_prod
backward : reduce_prod_grad
extra :
attrs : [bool use_mkldnn = false]

- api : reduce_sum
backward : reduce_sum_grad
extra :
attrs : [bool use_mkldnn = false]

- api : renorm
backward : renorm_grad
extra :
Expand Down

0 comments on commit 63b6a11

Please sign in to comment.