From c09a3790151e82ac51c419ae41cfd40bd449bafb Mon Sep 17 00:00:00 2001 From: minqiyang Date: Mon, 7 Jan 2019 14:56:46 +0800 Subject: [PATCH] remove const_cast test=develop --- paddle/fluid/operators/fused/fused_embedding_seq_pool_op.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paddle/fluid/operators/fused/fused_embedding_seq_pool_op.h b/paddle/fluid/operators/fused/fused_embedding_seq_pool_op.h index 38dfae8ad6d..2d60b9e96cf 100644 --- a/paddle/fluid/operators/fused/fused_embedding_seq_pool_op.h +++ b/paddle/fluid/operators/fused/fused_embedding_seq_pool_op.h @@ -40,7 +40,7 @@ struct EmbeddingVSumFunctor { int64_t row_number = table_t->dims()[0]; int64_t row_width = table_t->dims()[1]; int64_t last_dim = output_t->dims()[1]; - int64_t *ids = const_cast(ids_t->data()); + int64_t *ids = ids_t->mutable_data(platform::CPUPlace()); auto ids_lod = ids_t->lod()[0]; int64_t ids_count = ids_t->numel() / ids_lod.back(); -- GitLab