prepared_operator.cc 23.7 KB
Newer Older
J
Jiabin Yang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#include "paddle/fluid/imperative/prepared_operator.h"
16

J
Jiabin Yang 已提交
17
#include "paddle/fluid/eager/eager_tensor.h"
18
#include "paddle/fluid/framework/data_type_transform.h"
19
#include "paddle/fluid/framework/details/nan_inf_utils.h"
20
#include "paddle/fluid/imperative/infer_shape_context.h"
21
#include "paddle/fluid/imperative/tracer.h"
22
#include "paddle/phi/common/int_array.h"
23
#include "paddle/phi/common/scalar.h"
24
#include "paddle/utils/small_vector.h"
Q
QingshuChen 已提交
25
#ifdef PADDLE_WITH_XPU
26
#include "paddle/fluid/platform/device/xpu/xpu_op_list.h"
Q
QingshuChen 已提交
27
#endif
L
Liu-xiandong 已提交
28
#include "paddle/fluid/framework/library_type.h"
29
#include "paddle/fluid/platform/device/gpu/gpu_info.h"
C
chenjian 已提交
30
#include "paddle/fluid/platform/profiler/event_tracing.h"
31

32
DECLARE_bool(check_nan_inf);
33
DECLARE_bool(benchmark);
F
Feng Xing 已提交
34
DECLARE_bool(run_kp_kernel);
35

J
Jiabin Yang 已提交
36 37 38
namespace paddle {
namespace imperative {

39
static const phi::Kernel empty_kernel;
40 41
static const framework::RuntimeContext empty_ctx({}, {});
static const framework::Scope empty_scope;
42

43 44 45 46 47 48 49 50 51 52
const std::shared_ptr<VariableWrapper>& GetVariableWrapper(
    const std::shared_ptr<paddle::imperative::VarBase>& var) {
  return var->SharedVar();
}

const std::shared_ptr<VariableWrapper>& GetVariableWrapper(
    const std::shared_ptr<VariableWrapper>& var) {
  return var;
}

J
Jiabin Yang 已提交
53 54 55
const framework::Tensor* GetTensorFromVar(const framework::Variable& var) {
  if (var.IsType<framework::LoDTensor>()) {
    return &(var.Get<framework::LoDTensor>());
56 57
  } else if (var.IsType<phi::SelectedRows>()) {
    return &(var.Get<phi::SelectedRows>().value());
J
Jiabin Yang 已提交
58 59 60 61 62
  } else {
    return nullptr;
  }
}

63
template <typename VarType>
J
Jiabin Yang 已提交
64
void HandleComplexGradToRealGrad(const NameVarMap<VarType>& outs) {
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
  for (auto& pair : outs) {
    for (auto& var : pair.second) {
      if (var == nullptr) {
        continue;
      }
      if (var->ForwardDataType() ==
          static_cast<framework::proto::VarType::Type>(-1)) {
        VLOG(6) << "Var (" << var->Name()
                << ")'s forward data type is not set.";
        continue;
      }
      if (!framework::IsComplexType(var->DataType()) ||
          framework::IsComplexType(var->ForwardDataType())) {
        continue;
      }
      const auto* tensor = GetTensorFromVar(var->Var());
J
Jiabin Yang 已提交
81
      if (tensor && tensor->IsInitialized()) {
82 83 84 85 86 87 88 89
        VLOG(6) << "Transform " << framework::DataTypeToString(var->DataType())
                << " var `" << var->Name() << "` to "
                << framework::DataTypeToString(var->ForwardDataType())
                << " real var in dynamic graph.";
        framework::Tensor out;
        framework::TransComplexToReal(var->ForwardDataType(), var->DataType(),
                                      *tensor, &out);
        SetTensorToVariable(var->Var(), out, var->MutableVar());
J
Jiabin Yang 已提交
90 91 92 93 94
      }
    }
  }
}

J
Jiabin Yang 已提交
95
template <>
96 97
void HandleComplexGradToRealGrad<egr::EagerVariable>(
    const NameVarMap<egr::EagerVariable>& outs) {
J
Jiabin Yang 已提交
98 99 100
  // TODO(jiabin): Support Complex here.
}

101 102 103 104 105
void TestHandleComplexGradToRealGradEager(
    const NameVarMap<egr::EagerVariable>& outs) {
  HandleComplexGradToRealGrad<egr::EagerVariable>(outs);
}

J
Jiabin Yang 已提交
106 107
PreparedOp::PreparedOp(const framework::OperatorBase& op,
                       const framework::RuntimeContext& ctx,
108
                       const framework::OpKernelType& kernel_type,
109
                       const framework::OperatorWithKernel::OpKernelFunc& func,
110 111
                       const phi::ArgumentMappingFn* arg_map_fn,
                       const phi::KernelSignature* default_kernel_signature,
112
                       platform::DeviceContext* dev_ctx)
113 114 115 116
    : op_(op),
      ctx_(ctx),
      kernel_type_(kernel_type),
      func_(func),
117
      dev_ctx_(dev_ctx),
118 119 120
      arg_map_fn_(arg_map_fn),
      default_kernel_signature_(default_kernel_signature),
      phi_kernel_(empty_kernel) {}
121

122 123 124
PreparedOp::PreparedOp(const framework::OperatorBase& op,
                       const framework::RuntimeContext& ctx,
                       const framework::OpKernelType& kernel_type,
125 126 127 128
                       const phi::ArgumentMappingFn* arg_map_fn,
                       const phi::KernelSignature* default_kernel_signature,
                       phi::KernelSignature&& kernel_signature,
                       const phi::Kernel& phi_kernel,
129 130 131 132 133 134
                       platform::DeviceContext* dev_ctx)
    : op_(op),
      ctx_(ctx),
      kernel_type_(kernel_type),
      func_(nullptr),
      dev_ctx_(dev_ctx),
135
      run_phi_kernel_(true),
136 137 138 139
      arg_map_fn_(arg_map_fn),
      default_kernel_signature_(default_kernel_signature),
      kernel_signature_(std::move(kernel_signature)),
      phi_kernel_(phi_kernel) {}
140

141 142 143 144 145
template <typename VarType>
PreparedOp PrepareImpl(const NameVarMap<VarType>& ins,
                       const NameVarMap<VarType>& outs,
                       const framework::OperatorWithKernel& op,
                       const platform::Place& place,
146
                       const framework::AttributeMap& attrs,
147
                       const framework::AttributeMap& default_attrs) {
148
  platform::DeviceContextPool& pool = platform::DeviceContextPool::Instance();
149
  auto* dev_ctx = pool.Get(place);
150

151 152 153 154 155 156
#ifdef PADDLE_WITH_MKLDNN
  // MKLDNN variant of code reads attributes in some of GetKernelTypeForVar and
  // GetKernelType functions, so we need to copy the attributes there.
  // Const qualifier of Attrs had to be discarded to overwrite it.
  if (FLAGS_use_mkldnn) {
    auto& mutable_op_attrs = const_cast<framework::AttributeMap&>(op.Attrs());
157 158 159 160
    mutable_op_attrs = default_attrs;
    for (auto& attr : attrs) {
      mutable_op_attrs[attr.first] = attr.second;
    }
161 162
  }
#endif
163 164
  // NOTE(zhiqiu): for kernels on given device, for example NPU, the order to
  // choose is:
165
  // phi npu kernel > fluid npu kernel > phi cpu kernel > fluid cpu kernel
J
Jiabin Yang 已提交
166

167
  // 1. get expected kernel key
168
  auto dygraph_exe_ctx = DygraphExecutionContext<VarType>(
169
      op, empty_scope, *dev_ctx, empty_ctx, ins, outs, attrs, default_attrs);
170
  auto expected_kernel_key = op.GetExpectedKernelType(dygraph_exe_ctx);
171

172 173
  const phi::KernelSignature* default_kernel_signature = nullptr;
  phi::KernelSignature kernel_signature;
174
  phi::KernelKey pt_kernel_key;
175
  std::string pt_kernel_name;
L
Liu-xiandong 已提交
176
#if defined(PADDLE_WITH_XPU)
177 178 179 180 181
  bool is_xpu_unsupport =
      paddle::platform::is_xpu_place(expected_kernel_key.place_) &&
          !paddle::platform::is_xpu_support_op(op.Type(),
                                               expected_kernel_key) ||
      paddle::platform::is_in_xpu_black_list(op.Type());
L
Liu-xiandong 已提交
182

183
#endif
184

185 186 187 188 189 190
  bool has_phi_kernel = false;

  const auto* arg_map_fn =
      phi::OpUtilsMap::Instance().GetArgumentMappingFn(op.Type());
  if (arg_map_fn) {
    has_phi_kernel = true;
191
    kernel_signature = (*arg_map_fn)(
192 193
        framework::ExecutionArgumentMappingContext(dygraph_exe_ctx));
  } else {
194
    default_kernel_signature =
195
        phi::DefaultKernelSignatureMap::Instance().GetNullable(op.Type());
196
    if (default_kernel_signature) {
197
      has_phi_kernel = true;
198
      kernel_signature = *default_kernel_signature;
199 200 201 202
    }
  }

  if (has_phi_kernel) {
203 204
    VLOG(6) << kernel_signature;
    pt_kernel_name = kernel_signature.name;
205 206 207
// NOTE(Liu-xiandong): The register kernel used KP have library_type[KP],
// But the default library_type is Plain, so we need to modify the
// library_type here, otherwise it can't work.
L
Liu-xiandong 已提交
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
#ifdef PADDLE_WITH_XPU_KP
    if (paddle::platform::is_xpu_place(expected_kernel_key.place_)) {
      bool use_xpu_kp_kernel_rt =
          FLAGS_run_kp_kernel && paddle::platform::is_xpu_kp_support_op(
                                     op.Type(), expected_kernel_key);
      bool use_xpu_kp_kernel_debug =
          paddle::platform::is_in_xpu_kpwhite_list(op.Type());
      if (use_xpu_kp_kernel_rt) {
        VLOG(3) << "phi xpu_kp using rt mode ";
      }
      if (use_xpu_kp_kernel_debug) {
        VLOG(3) << "phi xpu_kp using debug mode ";
      }
      bool is_xpu_kp_support =
          (use_xpu_kp_kernel_rt || use_xpu_kp_kernel_debug);
      if (is_xpu_kp_support) {
224 225
        auto expected_kernel_key_library_type =
            expected_kernel_key.library_type_;
L
Liu-xiandong 已提交
226
        expected_kernel_key.library_type_ = paddle::framework::LibraryType::kKP;
227
        VLOG(3) << "modifing XPU KP kernel: " << op.Type()
L
Liu-xiandong 已提交
228
                << ", using_kernel_key:" << expected_kernel_key;
229 230
        phi::KernelKey try_pt_kernel_key =
            TransOpKernelTypeToPhiKernelKey(expected_kernel_key);
231 232
        if (!phi::KernelFactory::Instance().HasKernel(pt_kernel_name,
                                                      try_pt_kernel_key)) {
233 234 235 236
          expected_kernel_key.library_type_ = expected_kernel_key_library_type;
          VLOG(3) << "modify XPU KP kernel: " << op.Type() << " is failed "
                  << expected_kernel_key;
        }
L
Liu-xiandong 已提交
237 238 239
      }
    }
#endif
240

241
    pt_kernel_key = TransOpKernelTypeToPhiKernelKey(expected_kernel_key);
242
    auto& phi_kernel = phi::KernelFactory::Instance().SelectKernel(
243
        pt_kernel_name, pt_kernel_key);
244

245
    if (phi_kernel.IsValid()
L
Liu-xiandong 已提交
246
#if defined(PADDLE_WITH_XPU) && !defined(PADDLE_WITH_XPU_KP)
247 248 249
        && !is_xpu_unsupport
#endif
        ) {
C
Chen Weihang 已提交
250
      VLOG(6) << "Dynamic mode PrepareImpl - kernel name: " << pt_kernel_name
251
              << " | kernel key: " << pt_kernel_key
252
              << " | kernel: " << phi_kernel;
253

F
From00 已提交
254 255
      if (expected_kernel_key.place_ != place) {
        dev_ctx = pool.Get(expected_kernel_key.place_);
W
Wilber 已提交
256
      }
F
From00 已提交
257

258 259 260
      return PreparedOp(op, empty_ctx, expected_kernel_key, arg_map_fn,
                        default_kernel_signature, std::move(kernel_signature),
                        phi_kernel, dev_ctx);
261
    } else {
262
      VLOG(6) << "Dynamic mode ChoosePhiKernel - kernel `" << pt_kernel_name
263 264 265 266
              << "` not found.";
    }
  }

267
  // 2. check if op[type] has kernel registered.
J
Jiabin Yang 已提交
268 269
  auto& all_op_kernels = op.AllOpKernels();
  auto kernels_iter = all_op_kernels.find(op.Type());
270

271 272 273
// NOTE(Liu-xiandong): If we can't find heterogeneous kernel in phi,
// we need to select the heterogeneous kernel in fluid, but the kernel
// registered in KP use library_type[KP], we need to modify it.
274 275 276 277 278 279 280 281 282 283 284 285 286 287
#ifdef PADDLE_WITH_XPU_KP
  bool use_xpu_kp_kernel_rt =
      paddle::platform::is_xpu_place(expected_kernel_key.place_) &&
      FLAGS_run_kp_kernel &&
      paddle::platform::is_xpu_kp_support_op(op.Type(), expected_kernel_key);
  bool use_xpu_kp_kernel_debug =
      paddle::platform::is_xpu_place(expected_kernel_key.place_) &&
      paddle::platform::is_in_xpu_kpwhite_list(op.Type());
  bool is_xpu_kp_support = (use_xpu_kp_kernel_rt || use_xpu_kp_kernel_debug);
  if (is_xpu_kp_support) {
    expected_kernel_key.library_type_ = paddle::framework::LibraryType::kKP;
  }
#endif

288 289 290
  if ((kernels_iter == all_op_kernels.end() ||
       kernels_iter->second.find(expected_kernel_key) ==
           kernels_iter->second.end())
L
Liu-xiandong 已提交
291
#if defined(PADDLE_WITH_XPU) && !defined(PADDLE_WITH_XPU_KP)
292
      || is_xpu_unsupport
293
#endif
294 295 296 297
#if defined(PADDLE_WITH_XPU_KP)
      || (is_xpu_unsupport && !is_xpu_kp_support)
#endif
          ) {
298
    if (phi::KernelFactory::Instance().HasCompatiblePhiKernel(op.Type())) {
299 300
      auto pt_cpu_kernel_key =
          FallBackToCpu(expected_kernel_key, pt_kernel_key, op);
301
      auto& pt_cpu_kernel = phi::KernelFactory::Instance().SelectKernel(
302 303 304 305 306 307
          pt_kernel_name, pt_cpu_kernel_key);
      if (pt_cpu_kernel.IsValid()) {
        VLOG(6) << "Dynamic mode PrepareImpl - kernel name: " << pt_kernel_name
                << " | kernel key: " << pt_cpu_kernel_key
                << " | kernel: " << pt_cpu_kernel;
        auto* cpu_ctx = pool.Get(paddle::platform::CPUPlace());
308 309 310
        return PreparedOp(op, empty_ctx, expected_kernel_key, arg_map_fn,
                          default_kernel_signature, std::move(kernel_signature),
                          pt_cpu_kernel, cpu_ctx);
311 312 313 314
      }
    }
  }

315 316 317 318 319
  PADDLE_ENFORCE_NE(
      kernels_iter, all_op_kernels.end(),
      platform::errors::NotFound(
          "There are no kernels which are registered in the %s operator.",
          op.Type()));
320

J
Jiabin Yang 已提交
321 322
  auto& kernels = kernels_iter->second;
  auto kernel_iter = kernels.find(expected_kernel_key);
323

324
#if defined(PADDLE_WITH_XPU) && !defined(PADDLE_WITH_XPU_KP)
325
  if (paddle::platform::is_xpu_place(expected_kernel_key.place_) &&
326
      (kernel_iter == kernels.end() || is_xpu_unsupport)) {
327 328 329
    VLOG(3) << "missing XPU kernel: " << op.Type()
            << ", expected_kernel_key:" << expected_kernel_key
            << ", fallbacking to CPU one!";
330 331 332
    expected_kernel_key.place_ = platform::CPUPlace();
    kernel_iter = kernels.find(expected_kernel_key);
  }
333
#endif
L
Liu-xiandong 已提交
334 335

#ifdef PADDLE_WITH_XPU_KP
336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356
  if (paddle::platform::is_xpu_place(expected_kernel_key.place_)) {
    if (use_xpu_kp_kernel_rt) {
      VLOG(3) << "xpu_kp using rt mode ";
    }
    if (use_xpu_kp_kernel_debug) {
      VLOG(3) << "xpu_kp using debug mode ";
    }
    if (is_xpu_kp_support) {
      expected_kernel_key.library_type_ = paddle::framework::LibraryType::kKP;
      kernel_iter = kernels.find(expected_kernel_key);
      VLOG(3) << "using XPU KP kernel: " << op.Type()
              << ", using_kernel_key:" << expected_kernel_key;
    }
    if (!is_xpu_kp_support &&
        (kernel_iter == kernels.end() || is_xpu_unsupport)) {
      VLOG(3) << "missing XPU kernel: " << op.Type()
              << ", expected_kernel_key:" << expected_kernel_key
              << ", fallbacking to CPU one!";
      expected_kernel_key.place_ = platform::CPUPlace();
      kernel_iter = kernels.find(expected_kernel_key);
    }
L
Liu-xiandong 已提交
357 358 359
  }
#endif

360 361
#ifdef PADDLE_WITH_ASCEND_CL
  if (kernel_iter == kernels.end() &&
362
      paddle::platform::is_npu_place(expected_kernel_key.place_)) {
363 364 365
    VLOG(3) << "missing NPU kernel: " << op.Type()
            << ", expected_kernel_key:" << expected_kernel_key
            << ", fallbacking to CPU one!";
366 367 368
    expected_kernel_key.place_ = platform::CPUPlace();
    kernel_iter = kernels.find(expected_kernel_key);
  }
369 370 371
#endif
#ifdef PADDLE_WITH_MLU
  if (kernel_iter == kernels.end() &&
372
      paddle::platform::is_mlu_place(expected_kernel_key.place_)) {
373 374 375 376 377 378
    VLOG(3) << "missing MLU kernel: " << op.Type()
            << ", expected_kernel_key:" << expected_kernel_key
            << ", fallbacking to CPU one!";
    expected_kernel_key.place_ = platform::CPUPlace();
    kernel_iter = kernels.find(expected_kernel_key);
  }
379 380 381 382 383 384 385 386 387 388
#endif
#ifdef PADDLE_WITH_CUSTOM_DEVICE
  if (kernel_iter == kernels.end() &&
      paddle::platform::is_custom_place(expected_kernel_key.place_)) {
    VLOG(3) << "missing " << place.GetDeviceType() << " kernel: " << op.Type()
            << ", expected_kernel_key:" << expected_kernel_key
            << ", fallbacking to CPU one!";
    expected_kernel_key.place_ = platform::CPUPlace();
    kernel_iter = kernels.find(expected_kernel_key);
  }
389
#endif
390 391
  // TODO(jiabin): Add operator.cc's line 1000 part back when we need that
  // case
392 393 394 395
  PADDLE_ENFORCE_NE(kernel_iter, kernels.end(),
                    platform::errors::NotFound(
                        "Operator %s does not have kernel for %s.", op.Type(),
                        KernelTypeToString(expected_kernel_key)));
396

397 398 399 400
  if (!(expected_kernel_key.place_ == place)) {
    dev_ctx = pool.Get(expected_kernel_key.place_);
  }

401
  return PreparedOp(op, empty_ctx, expected_kernel_key, kernel_iter->second,
402
                    arg_map_fn, default_kernel_signature, dev_ctx);
403 404
}

405 406 407 408
PreparedOp PreparedOp::Prepare(const NameVarMap<VarBase>& ins,
                               const NameVarMap<VarBase>& outs,
                               const framework::OperatorWithKernel& op,
                               const platform::Place& place,
409
                               const framework::AttributeMap& attrs,
410 411
                               const framework::AttributeMap& default_attrs) {
  return PrepareImpl<VarBase>(ins, outs, op, place, attrs, default_attrs);
412 413 414 415 416 417
}

PreparedOp PreparedOp::Prepare(const NameVarMap<VariableWrapper>& ins,
                               const NameVarMap<VariableWrapper>& outs,
                               const framework::OperatorWithKernel& op,
                               const platform::Place& place,
418
                               const framework::AttributeMap& attrs,
419
                               const framework::AttributeMap& default_attrs) {
420
  return PrepareImpl<VariableWrapper>(ins, outs, op, place, attrs,
421
                                      default_attrs);
422 423
}

424 425
PreparedOp PreparedOp::Prepare(const NameVarMap<egr::EagerVariable>& ins,
                               const NameVarMap<egr::EagerVariable>& outs,
J
Jiabin Yang 已提交
426 427 428 429
                               const framework::OperatorWithKernel& op,
                               const platform::Place& place,
                               const framework::AttributeMap& attrs,
                               const framework::AttributeMap& default_attrs) {
430 431
  return PrepareImpl<egr::EagerVariable>(ins, outs, op, place, attrs,
                                         default_attrs);
J
Jiabin Yang 已提交
432
}
433 434 435
template <typename VarType>
static void PreparedOpRunImpl(
    const framework::OperatorBase& op, const framework::RuntimeContext& ctx,
436
    const framework::OpKernelType& kernel_type,
437
    const framework::OperatorWithKernel::OpKernelFunc& func,
438 439
    const phi::ArgumentMappingFn* arg_map_fn,
    const phi::KernelSignature* default_kernel_signature,
440
    platform::DeviceContext* dev_ctx, const NameVarMap<VarType>& ins,
441 442
    const NameVarMap<VarType>& outs, const framework::AttributeMap& attrs,
    const framework::AttributeMap& default_attrs) {
J
Jiabin Yang 已提交
443 444
  // TODO(zjl): remove scope in dygraph
  framework::Scope scope;
H
hong 已提交
445

446
  {
447
    platform::RecordEvent record_event("infer_shape",
C
chenjian 已提交
448 449
                                       platform::TracerEventType::OperatorInner,
                                       1, platform::EventRole::kInnerOp);
450
    DygraphInferShapeContext<VarType> infer_shape_ctx(
451 452
        &ins, &outs, &attrs, &default_attrs, op.Type(), &kernel_type,
        arg_map_fn, default_kernel_signature);
453 454 455 456
    op.Info().infer_shape_(&infer_shape_ctx);
  }

  {
457
    platform::RecordEvent record_event("compute",
C
chenjian 已提交
458 459
                                       platform::TracerEventType::OperatorInner,
                                       1, platform::EventRole::kInnerOp);
H
hong 已提交
460

461 462 463
    func(DygraphExecutionContext<VarType>(op, scope, *dev_ctx, ctx, ins, outs,
                                          attrs, default_attrs));
  }
464

465 466 467 468 469
  if (FLAGS_check_nan_inf) {
    framework::details::CheckOpHasNanOrInfInDygraph<VarType>(
        op.Type(), outs, dev_ctx->GetPlace());
  }

L
Leo Chen 已提交
470 471 472 473 474 475 476 477
  if (FLAGS_benchmark) {
    dev_ctx->Wait();
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
    PADDLE_ENFORCE_GPU_SUCCESS(platform::GpuGetLastError());
    VLOG(4) << "Operator(" << op.Type() << "): context wait and get last error";
#endif
  }

478 479 480 481 482 483 484 485 486 487 488 489 490 491 492
  /**
   * [ Why need handle complex gradient to real gradient? ]
   *
   * After the introduction of complex number calculations, Ops that support
   * complex number calculations generally support type promotion, such as
   * x(float32) + y(complex64) = out(complex64), then the type of the grad
   * tensor should be dout(complex64), dx(float32), dy (complex64).
   *
   * But because the dout is complex64, the dx is also complex64 after
   * grad op kernel executed, we need to recognize this situation and
   * convert dx to float32 type. HandleComplexGradToRealGrad does this thing.
   */
  if (framework::IsComplexType(kernel_type.data_type_)) {
    HandleComplexGradToRealGrad<VarType>(outs);
  }
493
}
H
hong 已提交
494

495 496 497
template <typename VarType>
static void PreparedOpRunPtImpl(
    const framework::OperatorBase& op,
498
    const framework::OpKernelType& kernel_type,
499 500 501 502 503
    const phi::ArgumentMappingFn* arg_map_fn,
    const phi::KernelSignature* default_kernel_signature,
    const phi::KernelSignature& kernel_signature, const phi::Kernel& phi_kernel,
    platform::DeviceContext* dev_ctx, const NameVarMap<VarType>& ins,
    const NameVarMap<VarType>& outs, const framework::AttributeMap& attrs,
504
    const framework::AttributeMap& default_attrs) {
505
  {
C
chenjian 已提交
506 507 508
    platform::RecordEvent record_event(op.Type() + "::infer_shape",
                                       platform::TracerEventType::OperatorInner,
                                       1, platform::EventRole::kInnerOp);
509
    DygraphInferShapeContext<VarType> infer_shape_ctx(
510 511
        &ins, &outs, &attrs, &default_attrs, op.Type(), &kernel_type,
        arg_map_fn, default_kernel_signature);
512 513 514 515
    op.Info().infer_shape_(&infer_shape_ctx);
  }

  {
C
chenjian 已提交
516 517 518
    platform::RecordEvent record_event(op.Type() + "::compute",
                                       platform::TracerEventType::OperatorInner,
                                       1, platform::EventRole::kInnerOp);
519

520
    PreparePhiData<VarType>(phi_kernel, kernel_signature, ins);
521

522
    phi::KernelContext pt_kernel_context;
523
    BuildDygraphPhiKernelContext<VarType>(kernel_signature, phi_kernel, ins,
524 525
                                          outs, attrs, default_attrs, dev_ctx,
                                          &pt_kernel_context);
526

527
    phi_kernel(&pt_kernel_context);
528
  }
529

530 531 532 533 534
  if (FLAGS_check_nan_inf) {
    framework::details::CheckOpHasNanOrInfInDygraph<VarType>(
        op.Type(), outs, dev_ctx->GetPlace());
  }

535 536
  if (FLAGS_benchmark) {
    dev_ctx->Wait();
537 538
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
    PADDLE_ENFORCE_GPU_SUCCESS(platform::GpuGetLastError());
539 540 541 542
    VLOG(4) << "Operator(" << op.Type() << "): context wait and get last error";
#endif
  }

543 544 545
  if (framework::IsComplexType(kernel_type.data_type_)) {
    HandleComplexGradToRealGrad<VarType>(outs);
  }
546 547
}

548 549
void PreparedOp::Run(const NameVarMap<VarBase>& ins,
                     const NameVarMap<VarBase>& outs,
550 551
                     const framework::AttributeMap& attrs,
                     const framework::AttributeMap& default_attrs) {
552
  if (run_phi_kernel_) {
553 554 555
    PreparedOpRunPtImpl<VarBase>(op_, kernel_type_, arg_map_fn_,
                                 default_kernel_signature_, kernel_signature_,
                                 phi_kernel_, dev_ctx_, ins, outs, attrs,
556
                                 default_attrs);
557
  } else {
558 559 560
    PreparedOpRunImpl<VarBase>(op_, ctx_, kernel_type_, func_, arg_map_fn_,
                               default_kernel_signature_, dev_ctx_, ins, outs,
                               attrs, default_attrs);
561
  }
562
}
H
hong 已提交
563

564 565
void PreparedOp::Run(const NameVarMap<VariableWrapper>& ins,
                     const NameVarMap<VariableWrapper>& outs,
566 567
                     const framework::AttributeMap& attrs,
                     const framework::AttributeMap& default_attrs) {
568
  if (run_phi_kernel_) {
569
    PreparedOpRunPtImpl<VariableWrapper>(
570 571 572
        op_, kernel_type_, arg_map_fn_, default_kernel_signature_,
        kernel_signature_, phi_kernel_, dev_ctx_, ins, outs, attrs,
        default_attrs);
573
  } else {
574 575 576
    PreparedOpRunImpl<VariableWrapper>(
        op_, ctx_, kernel_type_, func_, arg_map_fn_, default_kernel_signature_,
        dev_ctx_, ins, outs, attrs, default_attrs);
577
  }
J
Jiabin Yang 已提交
578 579
}

580 581
void PreparedOp::Run(const NameVarMap<egr::EagerVariable>& ins,
                     const NameVarMap<egr::EagerVariable>& outs,
J
Jiabin Yang 已提交
582 583
                     const framework::AttributeMap& attrs,
                     const framework::AttributeMap& default_attrs) {
584
  if (run_phi_kernel_) {
585
    PreparedOpRunPtImpl<egr::EagerVariable>(
586 587 588
        op_, kernel_type_, arg_map_fn_, default_kernel_signature_,
        kernel_signature_, phi_kernel_, dev_ctx_, ins, outs, attrs,
        default_attrs);
J
Jiabin Yang 已提交
589
  } else {
590 591 592
    PreparedOpRunImpl<egr::EagerVariable>(
        op_, ctx_, kernel_type_, func_, arg_map_fn_, default_kernel_signature_,
        dev_ctx_, ins, outs, attrs, default_attrs);
J
Jiabin Yang 已提交
593 594 595
  }
}

J
Jiabin Yang 已提交
596 597
}  // namespace imperative
}  // namespace paddle