Fix reshape op. (#10641)

fix_gru_py
qingqing01 7 years ago committed by Yang Yang(Tony)
parent 674bd839cd
commit ca5ea65ad1

@ -92,14 +92,16 @@ class ReshapeOp : public framework::OperatorWithKernel {
} }
if (unk_dim_idx != -1) { if (unk_dim_idx != -1) {
output_shape[unk_dim_idx] = -in_size / capacity; if (in_size > 0) {
// in_size < 0 and is un-determinate in compile time, skip the check, // in_size < 0 and is un-determinate in compile time, skip the check,
// for example, in_dims = [-1, 8, 1, 1], shape = [-1, 3, 8], // for example, in_dims = [-1, 8, 1, 1], shape = [-1, 3, 8],
// capacity = -24, in_size = -8, output_shape[0] = 0 // capacity = -24, in_size = -8, output_shape[0] = 0
// the following check will fail. // the following check will fail.
if (in_size > 0) { output_shape[unk_dim_idx] = -in_size / capacity;
PADDLE_ENFORCE_EQ(output_shape[unk_dim_idx] * capacity, -in_size, PADDLE_ENFORCE_EQ(output_shape[unk_dim_idx] * capacity, -in_size,
"Invalid shape is given."); "Invalid shape is given.");
} else {
output_shape[unk_dim_idx] = -1;
} }
} else { } else {
PADDLE_ENFORCE_EQ(capacity, in_size, "Invalid shape is given."); PADDLE_ENFORCE_EQ(capacity, in_size, "Invalid shape is given.");

Loading…
Cancel
Save