prepared_operator.cc 29.1 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"
C
chenjian 已提交
31
#include "paddle/fluid/platform/profiler/supplement_tracing.h"
32

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

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

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

44 45 46 47 48 49 50
const phi::KernelFactory& PreparedOp::phi_kernel_factory =
    phi::KernelFactory::Instance();
const phi::OpUtilsMap& PreparedOp::phi_op_utils_map =
    phi::OpUtilsMap::Instance();
const phi::DefaultKernelSignatureMap& PreparedOp::default_phi_kernel_sig_map =
    phi::DefaultKernelSignatureMap::Instance();

51 52 53 54 55 56 57 58 59 60
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;
}

61
const phi::DenseTensor* GetTensorFromVar(const framework::Variable& var) {
J
Jiabin Yang 已提交
62 63
  if (var.IsType<framework::LoDTensor>()) {
    return &(var.Get<framework::LoDTensor>());
64 65
  } else if (var.IsType<phi::SelectedRows>()) {
    return &(var.Get<phi::SelectedRows>().value());
J
Jiabin Yang 已提交
66 67 68 69 70
  } else {
    return nullptr;
  }
}

71
template <typename VarType>
J
Jiabin Yang 已提交
72
void HandleComplexGradToRealGrad(const NameVarMap<VarType>& outs) {
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
  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 已提交
89
      if (tensor && tensor->IsInitialized()) {
90 91 92 93
        VLOG(6) << "Transform " << framework::DataTypeToString(var->DataType())
                << " var `" << var->Name() << "` to "
                << framework::DataTypeToString(var->ForwardDataType())
                << " real var in dynamic graph.";
94
        phi::DenseTensor out;
95 96
        framework::TransComplexToReal(
            var->ForwardDataType(), var->DataType(), *tensor, &out);
97
        SetTensorToVariable(var->Var(), out, var->MutableVar());
J
Jiabin Yang 已提交
98 99 100 101 102
      }
    }
  }
}

J
Jiabin Yang 已提交
103
template <>
104 105
void HandleComplexGradToRealGrad<egr::EagerVariable>(
    const NameVarMap<egr::EagerVariable>& outs) {
J
Jiabin Yang 已提交
106 107 108
  // TODO(jiabin): Support Complex here.
}

109 110 111 112 113
void TestHandleComplexGradToRealGradEager(
    const NameVarMap<egr::EagerVariable>& outs) {
  HandleComplexGradToRealGrad<egr::EagerVariable>(outs);
}

J
Jiabin Yang 已提交
114 115
PreparedOp::PreparedOp(const framework::OperatorBase& op,
                       const framework::RuntimeContext& ctx,
116
                       const framework::OpKernelType& kernel_type,
117
                       const framework::OperatorWithKernel::OpKernelFunc& func,
118 119
                       const phi::ArgumentMappingFn* arg_map_fn,
                       const phi::KernelSignature* default_kernel_signature,
120
                       platform::DeviceContext* dev_ctx)
121 122 123 124
    : op_(op),
      ctx_(ctx),
      kernel_type_(kernel_type),
      func_(func),
125
      dev_ctx_(dev_ctx),
126 127 128
      arg_map_fn_(arg_map_fn),
      default_kernel_signature_(default_kernel_signature),
      phi_kernel_(empty_kernel) {}
129

130 131 132
PreparedOp::PreparedOp(const framework::OperatorBase& op,
                       const framework::RuntimeContext& ctx,
                       const framework::OpKernelType& kernel_type,
133 134 135 136
                       const phi::ArgumentMappingFn* arg_map_fn,
                       const phi::KernelSignature* default_kernel_signature,
                       phi::KernelSignature&& kernel_signature,
                       const phi::Kernel& phi_kernel,
137 138 139 140 141 142
                       platform::DeviceContext* dev_ctx)
    : op_(op),
      ctx_(ctx),
      kernel_type_(kernel_type),
      func_(nullptr),
      dev_ctx_(dev_ctx),
143
      run_phi_kernel_(true),
144 145 146 147
      arg_map_fn_(arg_map_fn),
      default_kernel_signature_(default_kernel_signature),
      kernel_signature_(std::move(kernel_signature)),
      phi_kernel_(phi_kernel) {}
148

149
template <typename VarType>
150
PreparedOp PrepareImpl(
151 152 153 154
    const NameVarMap<VarType>& ins,
    const NameVarMap<VarType>& outs,
    const framework::OperatorWithKernel& op,
    const platform::Place& place,
155 156 157 158 159
    const framework::AttributeMap& attrs,
    const framework::AttributeMap& default_attrs,
    const phi::KernelFactory& phi_kernel_factory,
    const phi::OpUtilsMap& phi_op_utils_map,
    const phi::DefaultKernelSignatureMap& default_phi_kernel_sig_map) {
160
  platform::DeviceContextPool& pool = platform::DeviceContextPool::Instance();
161
  auto* dev_ctx = pool.Get(place);
162

163 164 165 166 167 168
#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());
169 170 171 172
    mutable_op_attrs = default_attrs;
    for (auto& attr : attrs) {
      mutable_op_attrs[attr.first] = attr.second;
    }
173 174
  }
#endif
175 176
  // NOTE(zhiqiu): for kernels on given device, for example NPU, the order to
  // choose is:
177
  // phi npu kernel > fluid npu kernel > phi cpu kernel > fluid cpu kernel
J
Jiabin Yang 已提交
178

179
  // 1. get expected kernel key
180
  auto dygraph_exe_ctx = DygraphExecutionContext<VarType>(
181
      op, empty_scope, *dev_ctx, empty_ctx, ins, outs, attrs, default_attrs);
182
  auto expected_kernel_key = op.GetExpectedKernelType(dygraph_exe_ctx);
183

184 185
  const phi::KernelSignature* default_kernel_signature = nullptr;
  phi::KernelSignature kernel_signature;
186 187
  phi::KernelKey phi_kernel_key;
  std::string phi_kernel_name;
L
Liu-xiandong 已提交
188
#if defined(PADDLE_WITH_XPU)
189 190 191 192 193
  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 已提交
194

195
#endif
196

197 198
  bool has_phi_kernel = false;

199 200
  const auto* arg_map_fn = phi_op_utils_map.GetArgumentMappingFn(op.Type());

201 202
  if (arg_map_fn) {
    has_phi_kernel = true;
203
    kernel_signature = (*arg_map_fn)(
204 205
        framework::ExecutionArgumentMappingContext(dygraph_exe_ctx));
  } else {
206
    default_kernel_signature =
207
        default_phi_kernel_sig_map.GetNullable(op.Type());
208
    if (default_kernel_signature) {
209
      has_phi_kernel = true;
210
      kernel_signature = *default_kernel_signature;
211 212
    }
  }
213

214
  if (has_phi_kernel) {
215
    VLOG(6) << kernel_signature;
216
    phi_kernel_name = kernel_signature.name;
217 218 219
// 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 已提交
220 221 222
#ifdef PADDLE_WITH_XPU_KP
    if (paddle::platform::is_xpu_place(expected_kernel_key.place_)) {
      bool use_xpu_kp_kernel_rt =
223 224
          FLAGS_run_kp_kernel && paddle::platform::is_xpu_kp_support_op(
                                     op.Type(), expected_kernel_key);
L
Liu-xiandong 已提交
225 226 227 228 229 230 231 232 233 234 235
      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) {
236 237
        auto expected_kernel_key_library_type =
            expected_kernel_key.library_type_;
L
Liu-xiandong 已提交
238
        expected_kernel_key.library_type_ = paddle::framework::LibraryType::kKP;
239
        VLOG(3) << "modifing XPU KP kernel: " << phi_kernel_name
L
Liu-xiandong 已提交
240
                << ", using_kernel_key:" << expected_kernel_key;
241

242
        phi::KernelKey try_phi_kernel_key =
243
            TransOpKernelTypeToPhiKernelKey(expected_kernel_key);
244 245
        if (!phi_kernel_factory.HasKernel(phi_kernel_name,
                                          try_phi_kernel_key)) {
246
          expected_kernel_key.library_type_ = expected_kernel_key_library_type;
247
          VLOG(3) << "modify XPU KP kernel: " << phi_kernel_name
248 249
                  << " in dynamic graph is failed " << expected_kernel_key;
        } else {
250
          VLOG(3) << "modify XPU KP kernel: " << phi_kernel_name
251
                  << " in dynamic graph is succeed " << expected_kernel_key;
252
        }
L
Liu-xiandong 已提交
253 254 255
      }
    }
#endif
256

257
    phi_kernel_key = TransOpKernelTypeToPhiKernelKey(expected_kernel_key);
258
    auto& phi_kernel =
259
        phi_kernel_factory.SelectKernel(phi_kernel_name, phi_kernel_key);
260

261
    if (phi_kernel.IsValid()
L
Liu-xiandong 已提交
262
#if defined(PADDLE_WITH_XPU) && !defined(PADDLE_WITH_XPU_KP)
263 264
        && !is_xpu_unsupport
#endif
265
    ) {
266 267
      VLOG(6) << "Dynamic mode PrepareImpl - kernel name: " << phi_kernel_name
              << " | kernel key: " << phi_kernel_key
268
              << " | kernel: " << phi_kernel;
269

F
From00 已提交
270 271
      if (expected_kernel_key.place_ != place) {
        dev_ctx = pool.Get(expected_kernel_key.place_);
W
Wilber 已提交
272
      }
F
From00 已提交
273

274 275 276 277 278 279 280 281
      return PreparedOp(op,
                        empty_ctx,
                        expected_kernel_key,
                        arg_map_fn,
                        default_kernel_signature,
                        std::move(kernel_signature),
                        phi_kernel,
                        dev_ctx);
282
    } else {
283
      VLOG(6) << "Dynamic mode ChoosePhiKernel - kernel `" << phi_kernel_name
284 285 286 287
              << "` not found.";
    }
  }

288
  // 2. check if op[type] has kernel registered.
J
Jiabin Yang 已提交
289 290
  auto& all_op_kernels = op.AllOpKernels();
  auto kernels_iter = all_op_kernels.find(op.Type());
291

292 293 294
// 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.
295 296 297 298 299 300 301 302 303 304 305 306 307 308
#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

309 310 311
  if ((kernels_iter == all_op_kernels.end() ||
       kernels_iter->second.find(expected_kernel_key) ==
           kernels_iter->second.end())
L
Liu-xiandong 已提交
312
#if defined(PADDLE_WITH_XPU) && !defined(PADDLE_WITH_XPU_KP)
313
      || is_xpu_unsupport
314
#endif
315 316 317
#if defined(PADDLE_WITH_XPU_KP)
      || (is_xpu_unsupport && !is_xpu_kp_support)
#endif
318
  ) {
319
    if (has_phi_kernel) {
320 321 322 323 324 325 326 327
      auto phi_cpu_kernel_key =
          FallBackToCpu(expected_kernel_key, phi_kernel_key, op);
      auto& phi_cpu_kernel =
          phi_kernel_factory.SelectKernel(phi_kernel_name, phi_cpu_kernel_key);
      if (phi_cpu_kernel.IsValid()) {
        VLOG(6) << "Dynamic mode PrepareImpl - kernel name: " << phi_kernel_name
                << " | kernel key: " << phi_cpu_kernel_key
                << " | kernel: " << phi_cpu_kernel;
328
        auto* cpu_ctx = pool.Get(paddle::platform::CPUPlace());
329
        return PreparedOp(
330 331
            op,
            empty_ctx,
332
            framework::TransPhiKernelKeyToOpKernelType(phi_cpu_kernel_key),
333 334 335
            arg_map_fn,
            default_kernel_signature,
            std::move(kernel_signature),
336
            phi_cpu_kernel,
337
            cpu_ctx);
338 339 340 341
      }
    }
  }

342
  PADDLE_ENFORCE_NE(
343 344
      kernels_iter,
      all_op_kernels.end(),
345 346 347
      platform::errors::NotFound(
          "There are no kernels which are registered in the %s operator.",
          op.Type()));
348

J
Jiabin Yang 已提交
349 350
  auto& kernels = kernels_iter->second;
  auto kernel_iter = kernels.find(expected_kernel_key);
351

352
#if defined(PADDLE_WITH_XPU) && !defined(PADDLE_WITH_XPU_KP)
353
  if (paddle::platform::is_xpu_place(expected_kernel_key.place_) &&
354
      (kernel_iter == kernels.end() || is_xpu_unsupport)) {
355
    VLOG(3) << "fluid missing XPU kernel: " << op.Type()
356 357
            << ", expected_kernel_key:" << expected_kernel_key
            << ", fallbacking to CPU one!";
358 359 360
    expected_kernel_key.place_ = platform::CPUPlace();
    kernel_iter = kernels.find(expected_kernel_key);
  }
361
#endif
L
Liu-xiandong 已提交
362 363

#ifdef PADDLE_WITH_XPU_KP
364 365
  if (paddle::platform::is_xpu_place(expected_kernel_key.place_)) {
    if (use_xpu_kp_kernel_rt) {
366
      VLOG(3) << "fluid xpu_kp using rt mode ";
367 368
    }
    if (use_xpu_kp_kernel_debug) {
369
      VLOG(3) << "fluid xpu_kp using debug mode ";
370 371 372 373
    }
    if (is_xpu_kp_support) {
      expected_kernel_key.library_type_ = paddle::framework::LibraryType::kKP;
      kernel_iter = kernels.find(expected_kernel_key);
374
      VLOG(3) << "using fluid XPU KP kernel: " << op.Type()
375 376 377 378
              << ", using_kernel_key:" << expected_kernel_key;
    }
    if (!is_xpu_kp_support &&
        (kernel_iter == kernels.end() || is_xpu_unsupport)) {
379
      VLOG(3) << "fluid missing XPU kernel: " << op.Type()
380 381 382 383 384
              << ", 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 已提交
385 386 387
  }
#endif

388 389
#ifdef PADDLE_WITH_ASCEND_CL
  if (kernel_iter == kernels.end() &&
390
      paddle::platform::is_npu_place(expected_kernel_key.place_)) {
391 392 393
    VLOG(3) << "missing NPU kernel: " << op.Type()
            << ", expected_kernel_key:" << expected_kernel_key
            << ", fallbacking to CPU one!";
394
    expected_kernel_key.place_ = platform::CPUPlace();
395 396 397 398 399 400 401 402 403 404
    kernel_iter = kernels.find(expected_kernel_key);
  }
#endif
#ifdef PADDLE_WITH_IPU
  if (kernel_iter == kernels.end() &&
      paddle::platform::is_ipu_place(expected_kernel_key.place_)) {
    VLOG(3) << "missing IPU kernel: " << op.Type()
            << ", expected_kernel_key:" << expected_kernel_key
            << ", fallbacking to CPU one!";
    expected_kernel_key.place_ = platform::CPUPlace();
405 406
    kernel_iter = kernels.find(expected_kernel_key);
  }
407 408 409
#endif
#ifdef PADDLE_WITH_MLU
  if (kernel_iter == kernels.end() &&
410
      paddle::platform::is_mlu_place(expected_kernel_key.place_)) {
411 412 413 414 415 416
    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);
  }
417 418 419 420 421 422 423 424 425 426
#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);
  }
427
#endif
428 429
  // TODO(jiabin): Add operator.cc's line 1000 part back when we need that
  // case
430 431 432 433 434 435
  PADDLE_ENFORCE_NE(
      kernel_iter,
      kernels.end(),
      platform::errors::NotFound("Operator %s does not have kernel for %s.",
                                 op.Type(),
                                 KernelTypeToString(expected_kernel_key)));
436

437 438 439 440
  if (!(expected_kernel_key.place_ == place)) {
    dev_ctx = pool.Get(expected_kernel_key.place_);
  }

441 442 443 444 445 446 447
  return PreparedOp(op,
                    empty_ctx,
                    expected_kernel_key,
                    kernel_iter->second,
                    arg_map_fn,
                    default_kernel_signature,
                    dev_ctx);
448 449
}

450 451 452 453
PreparedOp PreparedOp::Prepare(const NameVarMap<VarBase>& ins,
                               const NameVarMap<VarBase>& outs,
                               const framework::OperatorWithKernel& op,
                               const platform::Place& place,
454
                               const framework::AttributeMap& attrs,
455
                               const framework::AttributeMap& default_attrs) {
456 457 458 459 460 461 462 463
  return PrepareImpl<VarBase>(ins,
                              outs,
                              op,
                              place,
                              attrs,
                              default_attrs,
                              phi_kernel_factory,
                              phi_op_utils_map,
464
                              default_phi_kernel_sig_map);
465 466 467 468 469 470
}

PreparedOp PreparedOp::Prepare(const NameVarMap<VariableWrapper>& ins,
                               const NameVarMap<VariableWrapper>& outs,
                               const framework::OperatorWithKernel& op,
                               const platform::Place& place,
471
                               const framework::AttributeMap& attrs,
472
                               const framework::AttributeMap& default_attrs) {
473 474 475 476 477 478 479 480 481
  return PrepareImpl<VariableWrapper>(ins,
                                      outs,
                                      op,
                                      place,
                                      attrs,
                                      default_attrs,
                                      phi_kernel_factory,
                                      phi_op_utils_map,
                                      default_phi_kernel_sig_map);
482 483
}

484 485
PreparedOp PreparedOp::Prepare(const NameVarMap<egr::EagerVariable>& ins,
                               const NameVarMap<egr::EagerVariable>& outs,
J
Jiabin Yang 已提交
486 487 488 489
                               const framework::OperatorWithKernel& op,
                               const platform::Place& place,
                               const framework::AttributeMap& attrs,
                               const framework::AttributeMap& default_attrs) {
490 491 492 493 494 495 496 497 498
  return PrepareImpl<egr::EagerVariable>(ins,
                                         outs,
                                         op,
                                         place,
                                         attrs,
                                         default_attrs,
                                         phi_kernel_factory,
                                         phi_op_utils_map,
                                         default_phi_kernel_sig_map);
J
Jiabin Yang 已提交
499
}
500 501
template <typename VarType>
static void PreparedOpRunImpl(
502 503
    const framework::OperatorBase& op,
    const framework::RuntimeContext& ctx,
504
    const framework::OpKernelType& kernel_type,
505
    const framework::OperatorWithKernel::OpKernelFunc& func,
506 507
    const phi::ArgumentMappingFn* arg_map_fn,
    const phi::KernelSignature* default_kernel_signature,
508 509 510 511
    platform::DeviceContext* dev_ctx,
    const NameVarMap<VarType>& ins,
    const NameVarMap<VarType>& outs,
    const framework::AttributeMap& attrs,
512
    const framework::AttributeMap& default_attrs) {
J
Jiabin Yang 已提交
513
  // TODO(zjl): remove scope in dygraph
H
hong 已提交
514

515
  {
516
    platform::RecordEvent record_event("infer_shape",
C
chenjian 已提交
517
                                       platform::TracerEventType::OperatorInner,
518 519 520 521 522 523 524 525 526 527
                                       1,
                                       platform::EventRole::kInnerOp);
    DygraphInferShapeContext<VarType> infer_shape_ctx(&ins,
                                                      &outs,
                                                      &attrs,
                                                      &default_attrs,
                                                      op.Type(),
                                                      &kernel_type,
                                                      arg_map_fn,
                                                      default_kernel_signature);
528
    op.Info().infer_shape_(&infer_shape_ctx);
C
chenjian 已提交
529 530 531
    record_event.End();
    platform::RecordOpInfoSupplement(
        op.Type(), op.Attrs(), infer_shape_ctx, ctx);
532 533 534
  }

  {
535
    platform::RecordEvent record_event("compute",
C
chenjian 已提交
536
                                       platform::TracerEventType::OperatorInner,
537 538
                                       1,
                                       platform::EventRole::kInnerOp);
H
hong 已提交
539

540 541
    func(DygraphExecutionContext<VarType>(
        op, empty_scope, *dev_ctx, ctx, ins, outs, attrs, default_attrs));
542
  }
543

544 545 546 547 548
  if (FLAGS_check_nan_inf) {
    framework::details::CheckOpHasNanOrInfInDygraph<VarType>(
        op.Type(), outs, dev_ctx->GetPlace());
  }

L
Leo Chen 已提交
549 550 551 552 553 554 555 556
  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
  }

557 558 559 560 561 562 563 564 565 566 567 568 569 570 571
  /**
   * [ 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);
  }
572
}
H
hong 已提交
573

574 575 576
template <typename VarType>
static void PreparedOpRunPtImpl(
    const framework::OperatorBase& op,
577
    const framework::OpKernelType& kernel_type,
578 579
    const phi::ArgumentMappingFn* arg_map_fn,
    const phi::KernelSignature* default_kernel_signature,
580 581 582 583 584 585
    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,
586
    const framework::AttributeMap& default_attrs) {
587
  {
588
    platform::RecordEvent record_event("infer_shape",
C
chenjian 已提交
589
                                       platform::TracerEventType::OperatorInner,
590 591 592 593 594 595 596 597 598 599
                                       1,
                                       platform::EventRole::kInnerOp);
    DygraphInferShapeContext<VarType> infer_shape_ctx(&ins,
                                                      &outs,
                                                      &attrs,
                                                      &default_attrs,
                                                      op.Type(),
                                                      &kernel_type,
                                                      arg_map_fn,
                                                      default_kernel_signature);
600
    op.Info().infer_shape_(&infer_shape_ctx);
C
chenjian 已提交
601 602 603
    record_event.End();
    platform::RecordOpInfoSupplement(
        op.Type(), op.Attrs(), infer_shape_ctx, kernel_signature);
604 605 606
  }

  {
607
    platform::RecordEvent record_event("compute",
C
chenjian 已提交
608
                                       platform::TracerEventType::OperatorInner,
609 610
                                       1,
                                       platform::EventRole::kInnerOp);
611

612
    PreparePhiData<VarType>(phi_kernel, kernel_signature, ins);
613

614
    phi::KernelContext phi_kernel_context;
615 616 617 618 619 620 621
    BuildDygraphPhiKernelContext<VarType>(kernel_signature,
                                          phi_kernel,
                                          ins,
                                          outs,
                                          attrs,
                                          default_attrs,
                                          dev_ctx,
622
                                          &phi_kernel_context);
623

624
    phi_kernel(&phi_kernel_context);
625
  }
626

627 628 629 630 631
  if (FLAGS_check_nan_inf) {
    framework::details::CheckOpHasNanOrInfInDygraph<VarType>(
        op.Type(), outs, dev_ctx->GetPlace());
  }

632 633
  if (FLAGS_benchmark) {
    dev_ctx->Wait();
634 635
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
    PADDLE_ENFORCE_GPU_SUCCESS(platform::GpuGetLastError());
636 637 638 639
    VLOG(4) << "Operator(" << op.Type() << "): context wait and get last error";
#endif
  }

640 641 642
  if (framework::IsComplexType(kernel_type.data_type_)) {
    HandleComplexGradToRealGrad<VarType>(outs);
  }
643 644
}

645 646
void PreparedOp::Run(const NameVarMap<VarBase>& ins,
                     const NameVarMap<VarBase>& outs,
647 648
                     const framework::AttributeMap& attrs,
                     const framework::AttributeMap& default_attrs) {
649
  if (run_phi_kernel_) {
650 651 652 653 654 655 656 657 658 659
    PreparedOpRunPtImpl<VarBase>(op_,
                                 kernel_type_,
                                 arg_map_fn_,
                                 default_kernel_signature_,
                                 kernel_signature_,
                                 phi_kernel_,
                                 dev_ctx_,
                                 ins,
                                 outs,
                                 attrs,
660
                                 default_attrs);
661
  } else {
662 663 664 665 666 667 668 669 670 671 672
    PreparedOpRunImpl<VarBase>(op_,
                               ctx_,
                               kernel_type_,
                               func_,
                               arg_map_fn_,
                               default_kernel_signature_,
                               dev_ctx_,
                               ins,
                               outs,
                               attrs,
                               default_attrs);
673
  }
674
}
H
hong 已提交
675

676 677
void PreparedOp::Run(const NameVarMap<VariableWrapper>& ins,
                     const NameVarMap<VariableWrapper>& outs,
678 679
                     const framework::AttributeMap& attrs,
                     const framework::AttributeMap& default_attrs) {
680
  if (run_phi_kernel_) {
681 682 683 684 685 686 687 688 689 690 691
    PreparedOpRunPtImpl<VariableWrapper>(op_,
                                         kernel_type_,
                                         arg_map_fn_,
                                         default_kernel_signature_,
                                         kernel_signature_,
                                         phi_kernel_,
                                         dev_ctx_,
                                         ins,
                                         outs,
                                         attrs,
                                         default_attrs);
692
  } else {
693 694 695 696 697 698 699 700 701 702 703
    PreparedOpRunImpl<VariableWrapper>(op_,
                                       ctx_,
                                       kernel_type_,
                                       func_,
                                       arg_map_fn_,
                                       default_kernel_signature_,
                                       dev_ctx_,
                                       ins,
                                       outs,
                                       attrs,
                                       default_attrs);
704
  }
J
Jiabin Yang 已提交
705 706
}

707 708
void PreparedOp::Run(const NameVarMap<egr::EagerVariable>& ins,
                     const NameVarMap<egr::EagerVariable>& outs,
J
Jiabin Yang 已提交
709 710
                     const framework::AttributeMap& attrs,
                     const framework::AttributeMap& default_attrs) {
711
  if (run_phi_kernel_) {
712 713 714 715 716 717 718 719 720 721 722
    PreparedOpRunPtImpl<egr::EagerVariable>(op_,
                                            kernel_type_,
                                            arg_map_fn_,
                                            default_kernel_signature_,
                                            kernel_signature_,
                                            phi_kernel_,
                                            dev_ctx_,
                                            ins,
                                            outs,
                                            attrs,
                                            default_attrs);
J
Jiabin Yang 已提交
723
  } else {
724 725 726 727 728 729 730 731 732 733 734
    PreparedOpRunImpl<egr::EagerVariable>(op_,
                                          ctx_,
                                          kernel_type_,
                                          func_,
                                          arg_map_fn_,
                                          default_kernel_signature_,
                                          dev_ctx_,
                                          ins,
                                          outs,
                                          attrs,
                                          default_attrs);
J
Jiabin Yang 已提交
735 736 737
  }
}

J
Jiabin Yang 已提交
738 739
}  // namespace imperative
}  // namespace paddle