Skip to content

Commit df4133d

Browse files
committed
Fix compile error in bipartite_match_op
1 parent 69074ea commit df4133d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

paddle/operators/bipartite_match_op.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ namespace operators {
2121
using Tensor = framework::Tensor;
2222
using LoDTensor = framework::LoDTensor;
2323

24-
constexpr char kEPS = 1e-6;
24+
constexpr double kEPS = 1e-6;
2525

2626
class BipartiteMatchOp : public framework::OperatorWithKernel {
2727
public:

0 commit comments

Comments
 (0)