We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16822fb commit 002a7b4Copy full SHA for 002a7b4
paddle/operators/scatter_op.cc
@@ -87,10 +87,15 @@ class ScatterOpMaker : public framework::OpProtoAndCheckerMaker {
87
AddInput("Updates", "The updated value of updates op");
88
AddOutput("Out", "The output of add op");
89
AddComment(R"DOC(
90
-Scatter Operator by selecting from the first axis,
+Scatter Operator.
91
92
-Out = Ref
+This operator obtains output by updating the input on selected indices on the first axis:
93
+
94
+$$
95
+Out = Ref \\
96
Out[Index] = Ref[Index] + Updates
97
98
99
)DOC");
100
}
101
};
0 commit comments