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 e79841d commit 02c5eccCopy full SHA for 02c5ecc
paddle/function/BufferArg.h
@@ -190,7 +190,7 @@ class SequenceIdArg : public BufferArg {
190
: BufferArg(VALUE_TYPE_INT32, shape, argType) {
191
bufferType_ = TENSOR_SEQUENCE_ID;
192
CHECK_EQ(shape_.ndims(), 1UL);
193
- CHECK_GT(shape_[0], 1UL);
+ CHECK_GE(shape_[0], 1UL);
194
numSeqs_ = shape_[0] - 1;
195
}
196
paddle/function/FunctionTest.h
@@ -134,7 +134,6 @@ class FunctionCompare {
134
output.valueType(),
135
output.shape(),
136
argType));
137
-<<<<<<< HEAD
138
139
140
/// add and init output sparse matrix
0 commit comments