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 853f5a8 commit 10bbbcbCopy full SHA for 10bbbcb
paddle/fluid/operators/elementwise/elementwise_floordiv_op.cc
@@ -1,4 +1,4 @@
1
-/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
+/* Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
2
3
Licensed under the Apache License, Version 2.0 (the "License");
4
you may not use this file except in compliance with the License.
@@ -21,7 +21,7 @@ namespace operators {
21
class ElementwiseFloorDivOpMaker : public ElementwiseOpMaker {
22
protected:
23
std::string GetName() const override { return "FloorDiv"; }
24
- std::string GetEquation() const override { return "Out = X % Y"; }
+ std::string GetEquation() const override { return "Out = X // Y"; }
25
};
26
} // namespace operators
27
} // namespace paddle
0 commit comments