Skip to content

Commit

Permalink
Fix bugs in compare_all_op
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesLim-sy committed Jun 24, 2021
1 parent 93fb64b commit ad99c8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion paddle/fluid/operators/controlflow/compare_all_op.cu
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class CompareReduceOpKernel
std::vector<const framework::Tensor*> ins = {x, y};
std::vector<framework::Tensor*> outs = {&tmp};
LaunchSameDimsElementwiseCudaKernel<ElementwiseType::kBinary, T, bool>(
cuda_ctx, ins, &outs, Functor<T>();
cuda_ctx, ins, &outs, Functor());

// Reduce by 'bitwise and' operator
std::vector<int> reduce_dims;
Expand Down

1 comment on commit ad99c8c

@paddle-bot-old
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Congratulation! Your pull request passed all required CI. You could ask reviewer(s) to approve and merge. 🎉

Please sign in to comment.