From bee511d54c909ef1b0fcb4419574b1e5fa6fe26a Mon Sep 17 00:00:00 2001 From: Yuang Liu Date: Wed, 1 Sep 2021 19:25:09 +0800 Subject: [PATCH] [NPU] set constant before copy data (#35335) --- paddle/fluid/operators/coalesce_tensor_op.cc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/paddle/fluid/operators/coalesce_tensor_op.cc b/paddle/fluid/operators/coalesce_tensor_op.cc index c9cc01b8b17..d2addb32bca 100644 --- a/paddle/fluid/operators/coalesce_tensor_op.cc +++ b/paddle/fluid/operators/coalesce_tensor_op.cc @@ -167,6 +167,12 @@ class CoalesceTensorOpKernel : public framework::OpKernel { auto out_tensors = context.MultiOutput("Output"); size_t offset = 0; if (context.Attr("copy_data")) { +#ifdef PADDLE_WITH_ASCEND_CL + framework::VisitDataType( + dtype, + FillConstantVisitor( + dev_ctx, fused_tensor, static_cast(0.0), dtype, context)); +#endif for (size_t i = 0; i < in_var_names.size(); ++i) { size_t len = static_cast(in_tensors[i]->numel()); auto sub_tensor = fused_tensor->Slice( -- GitLab