Skip to content

Commit

Permalink
Merge pull request #11534 from typhoonzero/try_fix_logical_doc
Browse files Browse the repository at this point in the history
try fix logical op doc
  • Loading branch information
reyoung committed Jun 20, 2018
2 parents 1105ecf + acc7451 commit 5f0c780
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion paddle/fluid/operators/logical_op.cc
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,6 @@ REGISTER_UNARY_LOGICAL_OP(logical_not, "$$Out = !X$$");
REGISTER_UNARY_LOGICAL_KERNEL(logical_not, CPU,
paddle::operators::LogicalNotFunctor);
REGISTER_BINARY_LOGICAL_OP(logical_xor,
"$$Out = (X || Y) \\, \\&\\& \\, !(X \\&\\& Y)$$");
"$$Out = (X || Y) \\&\\& !(X \\&\\& Y)$$");
REGISTER_BINARY_LOGICAL_KERNEL(logical_xor, CPU,
paddle::operators::LogicalXorFunctor);

0 comments on commit 5f0c780

Please sign in to comment.