From 9e4fabc0704b6019145af98ff85eba1b468fa6f9 Mon Sep 17 00:00:00 2001 From: 123malin Date: Fri, 15 May 2020 13:46:05 +0800 Subject: [PATCH] test=develop, error info improvement (#24496) (#24572) --- .../fluid/operators/split_selected_rows_op.cc | 10 +++++---- .../fluid/operators/split_selected_rows_op.h | 21 +++++++++++++++---- 2 files changed, 23 insertions(+), 8 deletions(-) diff --git a/paddle/fluid/operators/split_selected_rows_op.cc b/paddle/fluid/operators/split_selected_rows_op.cc index c503c826c2..54a35b5cd7 100644 --- a/paddle/fluid/operators/split_selected_rows_op.cc +++ b/paddle/fluid/operators/split_selected_rows_op.cc @@ -54,10 +54,12 @@ class SplitSelectedRowsOp : public framework::OperatorWithKernel { using framework::OperatorWithKernel::OperatorWithKernel; void InferShape(framework::InferShapeContext *ctx) const override { - PADDLE_ENFORCE(ctx->HasInput("X"), - "SplitSelectedRowsOp must have input X."); - PADDLE_ENFORCE(ctx->HasOutputs("Out"), - "SplitSelectedRowsOp must have output Out."); + PADDLE_ENFORCE_EQ(ctx->HasInput("X"), true, + platform::errors::InvalidArgument( + "SplitSelectedRowsOp must have input X.")); + PADDLE_ENFORCE_EQ(ctx->HasOutputs("Out"), true, + platform::errors::InvalidArgument( + "SplitSelectedRowsOp must have output Out.")); } }; diff --git a/paddle/fluid/operators/split_selected_rows_op.h b/paddle/fluid/operators/split_selected_rows_op.h index 9ec459e2a6..8d88da24c6 100644 --- a/paddle/fluid/operators/split_selected_rows_op.h +++ b/paddle/fluid/operators/split_selected_rows_op.h @@ -46,7 +46,11 @@ class SplitSelectedRowsOpKernel : public framework::OpKernel { // split rows index into output sparse vars for (size_t i = 0; i < x_rows.size(); ++i) { auto& id = x_rows[i]; - PADDLE_ENFORCE_LT(id, height); + PADDLE_ENFORCE_LT(id, height, + platform::errors::OutOfRange( + "Each row_id in x.rows must be less than x.height. " + "But received x.rows[%d] = %d, x.height = %d", + i, id, height)); int out_idx = GetSectionIndex(id, abs_sections); outs_rows_idx[out_idx].push_back(id); outs_dense_idx[out_idx].push_back(i); @@ -63,7 +67,12 @@ class SplitSelectedRowsOpKernel : public framework::OpKernel { if (rows_idx.size() > 0) { for (auto idx : rows_idx) { auto id_offset = idx - abs_sections[i]; - PADDLE_ENFORCE_LT(id_offset, height_sections[i]); + PADDLE_ENFORCE_LT( + id_offset, height_sections[i], + platform::errors::OutOfRange("Each row_id in out.rows must be " + "less than out.height. But recived " + "out.rows = [%d], out.height = [%d]", + id_offset, height_sections[i])); outs[i]->mutable_rows()->push_back(id_offset); } auto dst = outs[i]->mutable_value()->mutable_data(ctx.GetPlace()); @@ -80,13 +89,17 @@ class SplitSelectedRowsOpKernel : public framework::OpKernel { src + outs_dense_idx[i][j] * row_numel, sizeof(T) * row_numel, stream); #else - PADDLE_THROW("Paddle is not compiled with GPU"); + PADDLE_THROW(platform::errors::Unavailable( + "Paddle is not compiled with CUDA. Cannot visit cuda device")); #endif } } } PADDLE_ENFORCE_EQ(rows_idx.size(), outs[i]->rows().size(), - "rows should has the same size with tensor dim 0"); + platform::errors::InvalidArgument( + "rows should has the same size with tensor dim 0. " + "But received rows = %d, tensor's dim[0] = %d.", + rows_idx.size(), outs[i]->rows().size())); } } }; -- GitLab