interpreter_util.cc 35.5 KB
Newer Older
W
wanghuancoder 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
// Copyright (c) 2021 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.
14

15
#include "paddle/fluid/framework/new_executor/interpreter/interpreter_util.h"
16

17 18
#include <algorithm>

19
#include "paddle/fluid/distributed/auto_parallel/dist_attr.h"
20
#include "paddle/fluid/framework/details/nan_inf_utils.h"
W
wanghuancoder 已提交
21
#include "paddle/fluid/framework/executor_gc_helper.h"
22
#include "paddle/fluid/framework/new_executor/interpreter/data_transfer.h"
23
#include "paddle/fluid/framework/new_executor/interpreter/execution_config.h"
24
#include "paddle/fluid/memory/stats.h"
X
xiongkun 已提交
25 26 27
#include "paddle/fluid/operators/controlflow/conditional_block_op_helper.h"
#include "paddle/fluid/operators/controlflow/recurrent_op_helper.h"
#include "paddle/fluid/operators/controlflow/while_op_helper.h"
28
#include "paddle/fluid/operators/ops_extra_info.h"
29
#include "paddle/phi/core/kernel_context.h"
30
#include "paddle/phi/core/kernel_factory.h"
W
wanghuancoder 已提交
31

L
Leo Chen 已提交
32 33 34 35
#ifdef PADDLE_WITH_MKLDNN
#include "paddle/fluid/platform/mkldnn_helper.h"
#endif

36 37 38 39 40
PADDLE_DEFINE_EXPORTED_bool(
    new_executor_log_memory_stats,
    false,
    "Log memory stats after each op runs, just used for debug.");

41 42 43 44 45
PADDLE_DEFINE_EXPORTED_bool(
    new_executor_static_build,
    false,
    "Build the interpreterCore statically without running.");

46
DECLARE_bool(use_mkldnn);
47
DECLARE_bool(check_nan_inf);
48

W
wanghuancoder 已提交
49 50
namespace paddle {
namespace framework {
51
namespace interpreter {
52

53
using VariableIdMap = std::map<std::string, std::vector<int>>;
L
liutiexing 已提交
54

55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
// NOTE(Ruibiao): SingleStreamGuard make some multi-strem op (i.e.,
// c_allreduce_sum) run in single stream. It is dedicated to BuildOpFuncList
// which run kernel without stream synchronization.
class SingleStreamGuard {
 public:
  explicit SingleStreamGuard(std::shared_ptr<OperatorBase>& op) : op_(op) {
    if (op_->Type() == "c_allreduce_sum" &&
        op_->Attr<bool>("use_calc_stream") == false) {
      VLOG(6) << "Set c_allredce_sum's attr use_calc_stream to true";
      op_->SetAttr("use_calc_stream", true);
      is_changed = true;
    }
  }

  ~SingleStreamGuard() {
    if (!is_changed) {
      return;
    }

    if (op_->Type() == "c_allreduce_sum") {
      op_->SetAttr("use_calc_stream", false);
      VLOG(6) << "Set c_allredce_sum's attr use_calc_stream to false";
    }
  }

  DISABLE_COPY_AND_ASSIGN(SingleStreamGuard);

 private:
  bool is_changed{false};
  std::shared_ptr<OperatorBase> op_;
};

87
const std::vector<WorkQueueOptions> ConstructWorkQueueOptions(
88
    size_t host_num_threads, size_t device_num_threads, EventsWaiter* waiter) {
89 90 91 92 93 94 95 96 97 98 99 100 101
  std::vector<WorkQueueOptions> group_options;
  // for execute host Kernel
  group_options.emplace_back(/*name*/ "HostTasks",
                             /*num_threads*/ host_num_threads,
                             /*allow_spinning*/ true,
                             /*always_spinning*/ false,
                             /*track_task*/ false,
                             /*detached*/ true,
                             /*events_waiter*/ waiter);
  // for launch device Kernel
  group_options.emplace_back(/*name*/ "DeviceKernelLaunch",
                             /*num_threads*/ device_num_threads,
                             /*allow_spinning*/ true,
102
                             /*always_spinning*/ false,
103 104 105 106 107 108 109 110 111 112
                             /*track_task*/ false,
                             /*detached*/ true,
                             /*events_waiter*/ waiter);
  return group_options;
}

AsyncWorkQueue::AsyncWorkQueue(size_t host_num_threads,
                               size_t device_num_threads,
                               EventsWaiter* waiter)
    : host_num_thread_(host_num_threads) {
113 114
  queue_group_ = CreateWorkQueueGroup(
      ConstructWorkQueueOptions(host_num_threads, device_num_threads, waiter));
115 116
}

117 118
void AsyncWorkQueue::AddTask(const OpFuncType& op_func_type,
                             std::function<void()> fn) {
R
Ruibiao Chen 已提交
119 120
  // queue_idx=0 : kCpuSync or kGpuSync
  // queue_idx=1 : kGPUAsync
121
  queue_group_->AddTask(op_func_type == OpFuncType::kGpuAsync, std::move(fn));
122 123
}

124
bool IsCommunicationOp(const std::string& op_name) {
125 126 127 128 129 130 131 132 133 134 135 136 137 138
  const std::set<std::string> special_comm_op_set = {
      "send",
      "recv",
      "send_v2",
      "recv_v2",
  };
  const std::string communication_op_prefix = "c_";
  if (op_name.find(communication_op_prefix) != std::string::npos ||
      special_comm_op_set.count(op_name)) {
    return true;
  }
  return false;
}

139 140 141 142
bool IsCommunicationOp(const Instruction& instr) {
  return IsCommunicationOp(instr.OpBase()->Type());
}

143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
bool IsCpuOp(const Instruction& instr) {
  return platform::is_cpu_place(instr.DeviceContext().GetPlace());
}

bool IsSupportedHeterPlace(const phi::Place& place) {
  return platform::is_gpu_place(place) || platform::is_npu_place(place) ||
         platform::is_xpu_place(place) || platform::is_ipu_place(place) ||
         platform::is_custom_place(place);
}

bool IsMemcpyD2H(const Instruction& instr) {
  return instr.OpBase()->Type() == kMemcpyD2H;
}

bool IsMemcpyH2D(const Instruction& instr) {
  return instr.OpBase()->Type() == kMemcpyH2D;
}

bool IsMemcpyOp(const Instruction& instr) {
  return IsMemcpyD2H(instr) || IsMemcpyH2D(instr);
}

165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
bool IsBlockContainsOnlyPhiKernel(const framework::BlockDesc& block) {
  bool res = true;
  for (auto& op : block.AllOps()) {
    auto op_type = op->Type();
    if (op_type == "feed" || op_type == "fetch_v2") {
      continue;
    }
    auto has_phi_kernel =
        !phi::KernelFactory::Instance()
             .SelectKernelMap(phi::TransToPhiKernelName(op_type))
             .empty();

    if (!has_phi_kernel) {
      auto kernel_iter = OperatorWithKernel::AllOpKernels().find(op_type);
      if (kernel_iter != OperatorWithKernel::AllOpKernels().end()) {
        VLOG(4) << op_type << " has no phi kernel, but has fluid kernel.";
        res = false;
      } else {
        VLOG(4) << op_type << " has no phi kernel, and no fluid kernel.";
      }
    } else {
      VLOG(4) << op_type << " has phi kernel";
    }
  }
  return res;
}

192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
void AddFetch(const std::vector<std::string>& fetch_names,
              framework::BlockDesc* block) {
  auto* fetch_holder = block->Var(kFetchVarName);
  fetch_holder->SetType(proto::VarType::FETCH_LIST);
  fetch_holder->SetPersistable(true);

  int i = 0;
  for (auto& fetch_name : fetch_names) {
    // append fetch op
    auto* op = block->AppendOp();
    op->SetType("fetch_v2");
    op->SetInput("X", {fetch_name});
    op->SetOutput("Out", {kFetchVarName});
    op->SetAttr("col", {static_cast<int>(i)});
    op->CheckAttrs();
    i++;
208 209 210
  }
}

W
wanghuancoder 已提交
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
bool var_can_be_deleted(const std::string& name, const BlockDesc& block) {
  auto* var_desc = block.FindVar(name);
  if (var_desc == nullptr || var_desc->Persistable()) {
    return false;
  }

  auto type = var_desc->Proto()->type().type();

  return type == proto::VarType::LOD_TENSOR ||
         type == proto::VarType::SELECTED_ROWS ||
         type == proto::VarType::LOD_TENSOR_ARRAY;
}

std::unordered_map<const paddle::framework::OperatorBase*,
                   std::vector<std::string>>
L
Leo Chen 已提交
226 227
GetUnusedVars(const BlockDesc& block,
              const std::vector<std::shared_ptr<OperatorBase>>& ops) {
W
wanghuancoder 已提交
228 229 230
  std::unordered_map<std::string, size_t> var_op_idx_map;

  for (size_t i = 0; i < ops.size(); ++i) {
L
Leo Chen 已提交
231
    const auto& op = ops[i];
W
wanghuancoder 已提交
232 233 234 235 236 237 238 239 240 241

    OpInOutInfo info;
    for (auto& name_pair : op->Inputs()) {
      for (auto& name : name_pair.second) {
        if (!var_can_be_deleted(name, block)) {
          continue;
        }

        // var can be gc-ed
        if (!info.IsBuilt()) {
L
Leo Chen 已提交
242
          info.Build(op.get());
W
wanghuancoder 已提交
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
        }

        if (info.IsInArgBufferNeeded(name)) {
          // Update the last living op of variable to current op
          var_op_idx_map[name] = i;
        } else {
          VLOG(10) << "Skip reference count computing of variable "
                   << name_pair.first << "(" << name << ") in Operator "
                   << op->Type();
        }
      }
    }

    for (auto& name_pair : op->Outputs()) {
      for (auto& name : name_pair.second) {
        if (var_can_be_deleted(name, block)) {
          // Update the last living op of variable to current op
          var_op_idx_map[name] = i;
        }
      }
    }
  }

  std::unordered_map<const OperatorBase*, std::vector<std::string>> result;
  for (auto& name_op_idx_pair : var_op_idx_map) {
    auto& name = name_op_idx_pair.first;
    size_t op_idx = name_op_idx_pair.second;
L
Leo Chen 已提交
270 271 272
    auto op = ops[op_idx].get();
    result[op].emplace_back(name);
    VLOG(4) << op->Type() << " " << name;
W
wanghuancoder 已提交
273
  }
274
  VLOG(4) << "gc map size:" << result.size();
W
wanghuancoder 已提交
275 276 277
  return result;
}

L
Leo Chen 已提交
278 279 280
void BuildVariableScope(const framework::BlockDesc& block,
                        VariableScope* var_scope,
                        bool use_local_scope) {
281 282 283 284 285 286 287 288
  VLOG(3) << "Creating Variables";
  auto inner_scope = var_scope->GetMutableScope();

  // NOTE(zhiqiu): if create_local_scope_ is true, the persistable is
  // created in var_scope.scope_ , and other scope is created in local scope.
  Scope* local_scope = use_local_scope ? var_scope->GetMutableLocalScope()
                                       : var_scope->GetMutableScope();

289
  for (auto& var_desc : block.AllVars()) {
290
    auto var_name = var_desc->Name();
X
xiongkun 已提交
291 292 293
    // TODO(xiongkun): user may create a variable with name that exists before.
    // under such circumstances, we should raise a error. Currently we can't
    // get the var_desc of startup_program, so leave it later.
294
    if (var_name == framework::kEmptyVarName) {
W
wanghuancoder 已提交
295 296
      continue;
    }
297

298
    if (var_desc->Persistable()) {
299 300 301 302 303 304 305 306
      // In principle, we should put all trainable parameters in global scope,
      // which means the root of the scope tree. Some cases like quantization
      // will look up these parameters in global scope.
      const Scope* ancestor_scope = inner_scope;
      while (ancestor_scope->parent()) {
        ancestor_scope = ancestor_scope->parent();
      }
      auto* ptr = const_cast<Scope*>(ancestor_scope)->Var(var_name);
W
wanghuancoder 已提交
307

308
      VLOG(3) << "Initialize Variable " << var_name;
309 310
      // NOTE(zhiqiu): if var exists in scope and the type is right,
      // InitializeVariable will not create a new variable.
311 312 313
      InitializeVariable(ptr, var_desc->GetType());
      VLOG(3) << "Create Variable " << var_name << " global, which pointer is "
              << ptr << " type is " << static_cast<int>(var_desc->GetType());
314
    } else {
315 316 317 318 319
      auto* ptr = local_scope->Var(var_name);
      InitializeVariable(ptr, var_desc->GetType());
      VLOG(3) << "Create Variable " << var_name << " locally, which pointer is "
              << ptr << "Variable Type "
              << static_cast<int>(var_desc->GetType());
W
wanghuancoder 已提交
320
    }
321
    var_scope->AddVar(var_name, var_desc);
W
wanghuancoder 已提交
322 323 324
  }
}

325 326 327
OpFuncType AnalyseOpFuncType(const OpFuncNode& op_func_node,
                             const platform::Place& place) {
  if (platform::is_cpu_place(place)) {
R
Ruibiao Chen 已提交
328
    return OpFuncType::kCpuSync;
329 330 331 332 333 334 335 336
  }

  PADDLE_ENFORCE_EQ(IsSupportedHeterPlace(place),
                    true,
                    phi::errors::Fatal("Unsupported current place %s", place));

  // Some GPU OPs do not launch CUDA Kernel, but spend a lot of time on CPU
  // computing. They execute serially in device thread and block CUDA kernel
R
Ruibiao Chen 已提交
337
  // launching in other GPU OPs. To improve performance, set them as kGpuSync
338 339 340 341 342
  // and so that they would be dispatched to host thread.
  std::shared_ptr<OperatorBase> op = op_func_node.operator_base_;
  if (op->Type() == kCoalesceTensor &&
      op->Attr<bool>("set_constant") == false &&
      op->Attr<bool>("copy_data") == false) {
R
Ruibiao Chen 已提交
343
    return OpFuncType::kGpuSync;
344 345
  }

346 347 348 349 350
  // for memcpy explicitly called by user
  if (platform::is_gpu_place(place) && op->Type() == interpreter::kMemcpyD2H) {
    return OpFuncType::kGpuSync;
  }

351
  if (op->Type() == "shape") {
R
Ruibiao Chen 已提交
352
    return OpFuncType::kGpuSync;
353
  }
R
Ruibiao Chen 已提交
354
  return OpFuncType::kGpuAsync;
355 356
}

L
Leo Chen 已提交
357 358
void CreateAllOps(const framework::BlockDesc& block,
                  std::vector<std::unique_ptr<OperatorBase>>* ops) {
359
  for (auto& op : block.AllOps()) {
360
    auto op_type = op->Type();
361
    VLOG(8) << "CreateOp from : " << op_type;
W
wanghuancoder 已提交
362

363
    auto& info = OpInfoMap::Instance().Get(op_type);
W
wanghuancoder 已提交
364 365 366

    const VariableNameMap& inputs_names = op->Inputs();
    const VariableNameMap& outputs_names = op->Outputs();
367

W
wanghuancoder 已提交
368
    AttributeMap op_attr_map = op->GetAttrMap();
369
    AttributeMap op_runtime_attr_map = op->GetRuntimeAttrMap();
W
wanghuancoder 已提交
370 371 372 373

    if (info.Checker() != nullptr) {
      info.Checker()->Check(&op_attr_map);
    }
374 375 376 377 378 379 380

    const auto& extra_attr_checkers =
        operators::ExtraInfoUtils::Instance().GetExtraAttrsChecker(op_type);
    for (const auto& checker : extra_attr_checkers) {
      checker(&op_runtime_attr_map, false);
    }

W
wanghuancoder 已提交
381
    auto op_base =
382 383
        info.Creator()(op_type, inputs_names, outputs_names, op_attr_map);
    op_base->SetRuntimeAttributeMap(op_runtime_attr_map);
384 385 386 387 388 389 390 391 392 393

#ifdef PADDLE_WITH_MKLDNN
    if (FLAGS_use_mkldnn) {
      if (op->HasAttr("use_mkldnn")) {
        VLOG(4) << "Set use_mkldnn=True for " << op_base->Type();
        op_base->SetAttr("use_mkldnn", true);
      }
    }
#endif

X
xiongkun 已提交
394
    ops->emplace_back(std::unique_ptr<OperatorBase>(op_base));
W
wanghuancoder 已提交
395
  }
396 397
}

398
std::tuple<VariableValueMap, VariableIdMap> BuildVariableMap(
399 400
    const VariableNameMap& var_name_map,
    VariableScope* var_scope,
401
    Scope* local_scope,
402
    bool find_var_recursively = false,
403
    bool allow_var_not_in_scope = false) {
404 405 406 407 408 409 410 411
  VariableValueMap name2var;
  VariableIdMap name2id;
  for (auto& item : var_name_map) {
    std::vector<Variable*> vars;
    std::vector<int> ids;
    vars.reserve(item.second.size());

    for (auto& var_name : item.second) {
412 413
      auto* var = local_scope->FindVar(var_name);

414
      if (!var_scope->HasVar(var_name)) {
415
        if (find_var_recursively && var) {
416
          VLOG(3) << "Add " << var_name << " to var_scope";
417
          var_scope->AddVar(var_name, nullptr);
418
        } else if (allow_var_not_in_scope) {
419 420 421
          VLOG(4) << var_name << " don't exist in variable scope, skip it!";
          continue;
        }
422
      }
423
      auto var_id = var_scope->VarId(var_name);
424
      vars.push_back(var);
425 426 427 428 429 430 431
      ids.push_back(var_id);
    }
    name2var[item.first] = std::move(vars);
    name2id[item.first] = std::move(ids);
  }
  return std::make_tuple(name2var, name2id);
}
W
wanghuancoder 已提交
432

L
Leo Chen 已提交
433 434 435
void ApplyDeviceGuard(const OperatorBase* op_base,
                      const platform::Place& place,
                      OpKernelType* expected_kernel_key) {
436 437 438 439 440 441 442 443 444
  bool need_change_place =
      (op_base->HasAttr("op_device") &&
       (op_base->Attr<std::string>("op_device").length() > 0));
  if (need_change_place) {
    auto& op_device = op_base->Attr<std::string>("op_device");
    if (op_device == "cpu" || platform::is_cpu_place(place)) {
      VLOG(3) << "Switch into CPUPlace by device_guard.";
      expected_kernel_key->place_ = platform::CPUPlace();
    } else if (op_device.find("gpu") != std::string::npos &&
445 446 447 448
               platform::is_gpu_place(place)) {
      // when the Op that does not have GPUKernel is assigned to GPU, the
      // CPUKernel will be executed and a warning will be given at the same
      // time.
449 450 451 452 453 454 455 456 457 458
      if (op_base->SupportGPU()) {
        expected_kernel_key->place_ = place;
      } else {
        expected_kernel_key->place_ = platform::CPUPlace();
        LOG_FIRST_N(WARNING, 1)
            << "Op(" << op_base->Type()
            << ") has no CUDA implementation. It will be assigned to CPUPlace.";
      }
      VLOG(3) << "Switch into " << expected_kernel_key->place_
              << " by device_guard.";
459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
    } else if (op_device.find("npu") != std::string::npos &&
               platform::is_npu_place(place)) {
      // when the Op that does not have NPUKernel is assigned to NPU, the
      // CPUKernel will be executed and a warning will be given at the same
      // time.
      if (op_base->SupportNPU()) {
        expected_kernel_key->place_ = place;
      } else {
        expected_kernel_key->place_ = platform::CPUPlace();
        LOG_FIRST_N(WARNING, 1)
            << "Op(" << op_base->Type()
            << ") has no NPU implementation. It will be assigned to CPUPlace.";
      }
      VLOG(3) << "Switch into " << expected_kernel_key->place_
              << " by device_guard.";
    } else if (op_device.find("xpu") != std::string::npos &&
               platform::is_xpu_place(place)) {
      // when the Op that does not have XPUKernel is assigned to XPU, the
      // CPUKernel will be executed and a warning will be given at the same
      // time.
      if (op_base->SupportXPU()) {
        expected_kernel_key->place_ = place;
      } else {
        expected_kernel_key->place_ = platform::CPUPlace();
        LOG_FIRST_N(WARNING, 1)
            << "Op(" << op_base->Type()
            << ") has no XPU implementation. It will be assigned to CPUPlace.";
      }
      VLOG(3) << "Switch into " << expected_kernel_key->place_
              << " by device_guard.";
489 490 491 492 493 494 495
    } else {
      PADDLE_THROW(
          platform::errors::Fatal("Unsupported current place %s", op_device));
    }
  }
}

L
Leo Chen 已提交
496
void HandleOperatorBase(const platform::Place& place,
L
Leo Chen 已提交
497 498
                        const VariableScope* var_scope,
                        std::shared_ptr<OperatorBase> op_base,
499 500
                        OpFuncNode* op_func_node,
                        Scope* local_scope) {
501 502 503 504
  platform::DeviceContextPool& pool = platform::DeviceContextPool::Instance();
  auto* dev_ctx = pool.Get(place);
  // input, output is prepared. set the other attributes.
  op_func_node->operator_base_ = op_base;
505
  op_func_node->type_ = AnalyseOpFuncType(*op_func_node, place);
506
  op_func_node->kernel_func_ = nullptr;
507
  op_base->Run(*local_scope, place);  // Run without data transformer.
508 509 510
  op_func_node->dev_ctx_ = dev_ctx;
}

511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570
void FakeInitializeOutputs(phi::Kernel* phi_kernel,
                           phi::KernelSignature* kernel_sig,
                           phi::KernelContext* phi_kernel_context) {
  auto output_defs = phi_kernel->args_def().output_defs();
  auto out_names = kernel_sig->output_names;

  for (size_t i = 0; i < out_names.size(); ++i) {
    VLOG(4) << out_names[i];
    // calcute the start and end index of the output tensors
    size_t start_idx = phi_kernel_context->OutputRangeAt(i).first;
    size_t end_idx = phi_kernel_context->OutputRangeAt(i).second;
    for (size_t j = start_idx; j < end_idx; ++j) {
      auto* out_tensor = phi_kernel_context->MutableOutputAt(j);
      if (out_tensor == nullptr) {
        VLOG(4) << "Output" << out_names[i] << " is nullptr";
        continue;
      }
      auto backend = output_defs[j].backend;
      auto* dev_ctx =
          &(phi_kernel_context->GetDeviceContext<phi::DeviceContext>());

      if (phi::DenseTensor::classof(out_tensor)) {
        if (!out_tensor->initialized()) {
          VLOG(4) << "DenseTensor fake alloc 0 bytes of type "
                  << out_tensor->dtype() << " on backend " << backend << " "
                  << out_tensor;
          if (backend == phi::TransToPhiBackend(dev_ctx->GetPlace())) {
            dev_ctx->Alloc(out_tensor,
                           out_tensor->dtype(),
                           /*requested_size=*/0,
                           /*pinned=*/false,
                           /*fake_alloc=*/true);
          } else {
            if (backend == phi::Backend::CPU ||
                backend == phi::Backend::ONEDNN) {
              dev_ctx->HostAlloc(out_tensor,
                                 out_tensor->dtype(),
                                 /*requested_size=*/0,
                                 /*fake_alloc=*/true);
            }
          }
        }
      } else if (phi::SparseCooTensor::classof(out_tensor)) {
        // todo
        VLOG(4) << "SparseCooTensor";
      } else if (phi::SparseCsrTensor::classof(out_tensor)) {
        // todo
        VLOG(4) << "SparseCsrTensor";
      } else {
        PADDLE_THROW(phi::errors::Unimplemented(
            "Only support "
            "DenseTensor/SparseCooTensor/SparseCsrTensor "
            "now"));
        VLOG(4) << "SparseCooTensor";
      }
    }
  }
}

bool BuildOpFuncList(const platform::Place& place,
L
Leo Chen 已提交
571 572 573 574
                     const framework::BlockDesc& block,
                     const std::set<std::string>& skip_gc_vars,
                     std::vector<OpFuncNode>* vec_func_list,
                     VariableScope* var_scope,
575 576
                     const ExecutionConfig& execution_config,
                     bool use_local_scope) {
577 578
  Scope* local_scope = use_local_scope ? var_scope->GetMutableLocalScope()
                                       : var_scope->GetMutableScope();
X
xiongkun 已提交
579 580 581
  std::vector<std::unique_ptr<OperatorBase>>
      ops_unique;  // its elements will be moved to vec_func_list
  // Step 1: create all ops for current block.
L
Leo Chen 已提交
582
  CreateAllOps(block, &ops_unique);
583

584 585 586 587
  auto skip_run =
      FLAGS_new_executor_static_build && IsBlockContainsOnlyPhiKernel(block);
  VLOG(4) << "Static build: " << skip_run;

588
  if (!execution_config.used_for_jit) {
589 590 591 592 593 594 595 596 597
    // If gc is enabled and block size > 1
    const ProgramDesc& main_program = *block.Program();
    operators::PrepareSafeEagerDeletionOnConditionalOpAndConditionalGradOp(
        main_program, block.ID(), ops_unique);
    operators::PrepareSafeEagerDeletionOnWhileOpAndWhileGradOp(
        main_program, block.ID(), ops_unique);
    operators::PrepareSafeEagerDeletionOnRecurrentOpAndRecurrentGradOp(
        main_program, block.ID(), ops_unique);
  }
X
xiongkun 已提交
598

L
Leo Chen 已提交
599 600 601
#ifdef PADDLE_WITH_MKLDNN
  platform::RegisterModelLayout(ops_unique, place);
#endif
602 603
  // its elements will be moved to vec_func_list
  std::vector<std::shared_ptr<OperatorBase>> ops;
X
xiongkun 已提交
604 605 606
  for (auto& op_unique : ops_unique) {
    ops.emplace_back(std::move(op_unique));
  }
L
Leo Chen 已提交
607
  auto unused_var_map = GetUnusedVars(block, ops);
W
wanghuancoder 已提交
608

609
  bool flag_log_is_printed = false;
L
Leo Chen 已提交
610 611
  for (size_t i = 0; i < ops.size(); ++i) {
    auto op = ops[i].get();
612 613 614
    const std::string& op_type = op->Type();

    VLOG(6) << "Build OpFuncNode from : " << op_type;
W
wanghuancoder 已提交
615

P
pangyoki 已提交
616 617
    // Print new executor log if grad op is used.
    // It's only for test and will be removed later.
618
    if (!flag_log_is_printed && op_type.find("_grad") != std::string::npos) {
619
      LOG_FIRST_N(INFO, 1) << "Standalone Executor is Used.";
P
pangyoki 已提交
620 621 622
      flag_log_is_printed = true;
    }

623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638
    // Hot fix for variables used in dataloader, like
    // 'lod_tensor_blocking_queue_0'. These variables may be created in scope,
    // and it is not existed as variable in program.
    const std::set<std::string> ops_with_var_not_in_program = {
        "create_py_reader"};
    const std::set<std::string> ops_with_var_not_in_scope = {
        "conditional_block",
        "conditional_block_grad",
        "recurrent_grad",
        "rnn_memory_helper",
        "rnn_memory_helper_grad",
        "while",
        "while_grad"};
    bool allow_var_not_in_program = ops_with_var_not_in_program.count(op_type);
    bool allow_var_not_in_scope = ops_with_var_not_in_scope.count(op_type);

639 640 641
    // ops in the control flow block may not find its inputs or outputs
    // in VariableScope of the sub-block, so we need search it in parent scope.

642
    framework::VariableNameMap& input_name_map = op->Inputs();
W
wanghuancoder 已提交
643
    VariableValueMap ins_map;
644
    VariableIdMap ins_name2id;
645 646 647 648 649 650
    std::tie(ins_map, ins_name2id) = BuildVariableMap(
        input_name_map,
        var_scope,
        local_scope,
        execution_config.used_for_control_flow_op || allow_var_not_in_program,
        allow_var_not_in_scope);
W
wanghuancoder 已提交
651

652
    framework::VariableNameMap& output_name_map = op->Outputs();
W
wanghuancoder 已提交
653
    VariableValueMap outs_map;
654
    VariableIdMap outs_name2id;
655 656 657 658
    std::tie(outs_map, outs_name2id) =
        BuildVariableMap(output_name_map,
                         var_scope,
                         local_scope,
659
                         execution_config.used_for_control_flow_op,
660
                         allow_var_not_in_scope);
W
wanghuancoder 已提交
661

662
    // step 1: build OpFuncNode
W
wanghuancoder 已提交
663
    OpFuncNode op_func_node;
664
    op_func_node.operator_base_ = ops[i];
W
wanghuancoder 已提交
665 666
    op_func_node.input_index = ins_name2id;
    op_func_node.output_index = outs_name2id;
667

668 669 670 671 672 673
    const OperatorDistAttr* dist_attr = block.Op(i)->DistAttr();
    if (dist_attr &&
        dist_attr->execution_stream() != distributed::auto_parallel::kDefault) {
      op_func_node.execution_stream_ = dist_attr->execution_stream();
    }

674 675 676 677 678 679 680 681 682 683 684
    if (dist_attr) {
      op_func_node.priority_ = dist_attr->scheduling_priority();
    } else if (interpreter::IsCommunicationOp(op_type)) {
      // NOTE(Ruibiao): Dispatching computation before communication improves
      // multi-stream overlap when the time cost of communication less than that
      // of the calculation (e.g., ResNet50_bs128_pure_fp16 N4C32 training).
      op_func_node.priority_ = 1;
    }
    VLOG(6) << "scheduling priority of " << op_type << " : "
            << op_func_node.priority_;

685 686
    SingleStreamGuard single_stream_guard(ops[i]);

687
    VLOG(4) << "Start run " << place << " " << op->DebugStringEx(local_scope);
688

689 690 691 692 693 694 695 696 697 698
#ifdef PADDLE_WITH_ASCEND_CL
    // NOTE(wangxi): nan/inf cannot be detected on NPU by checking the variable
    // values, but only through special `float_status` to checks whether
    // the operation is overflow. More about `float_status`, see:
    // https://gitee.com/ascend/modelzoo/issues/I3NF8V?from=project-issue
    if (FLAGS_check_nan_inf) {
      framework::details::NPUAllocAndClearFloatStatus(*op, *local_scope, place);
    }
#endif

699 700
    try {
      if (dynamic_cast<framework::OperatorWithKernel*>(op) == nullptr) {
L
Leo Chen 已提交
701
        VLOG(4) << "HandleOperatorBase";
702
        // op is not a operatorwithkernel, so direcly run OperatorBase::Run()
L
Leo Chen 已提交
703
        HandleOperatorBase(
704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719
            place, var_scope, ops[i], &op_func_node, local_scope);
      } else {
        VLOG(4) << "OP is not null";
        auto op_with_kernel = const_cast<framework::OperatorWithKernel*>(
            static_cast<const framework::OperatorWithKernel*>(op));
        VLOG(4) << "get op_with_kernel";
        // construct RuntimeContext and analysis KernelType
        RuntimeContext runtime_context({}, {});
        runtime_context.inputs.swap(ins_map);
        runtime_context.outputs.swap(outs_map);
        VLOG(4) << "get RuntimeContext";

        Scope scope, *runtime_scope = &scope;
        // NOTE(Ruibiao): We do not encourage directly using scope in OP kernel.
        // But some OPs do have such behavior (e.g., cinn_launch OP). Here
        // special treatment for them.
720 721
        if (op_with_kernel->Type() == "cinn_launch" ||
            op_with_kernel->Type() == "cinn_instruction_run") {
722 723 724 725 726 727
          VLOG(6) << "OP(" << op_with_kernel->Type()
                  << ") use scope in kernel, "
                     "so pass a real scope to "
                     "ExecutionContext";
          runtime_scope = local_scope;
        }
728

729 730 731 732 733 734
        auto& pool = platform::DeviceContextPool::Instance();
        auto* dev_ctx = pool.Get(place);
        auto exec_ctx = ExecutionContext(
            *op_with_kernel, *runtime_scope, *dev_ctx, runtime_context);
        auto expected_kernel_key =
            op_with_kernel->GetExpectedKernelType(exec_ctx);
735 736 737 738 739 740
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
        if (op_with_kernel->CanCUDNNBeUsed(exec_ctx,
                                           expected_kernel_key.data_type_)) {
          expected_kernel_key.library_type_ = framework::LibraryType::kCUDNN;
        }
#endif
741
        VLOG(4) << "expected_kernel_key : " << expected_kernel_key;
742
        // change device by the device_guard()
L
Leo Chen 已提交
743
        ApplyDeviceGuard(op, place, &expected_kernel_key);
744 745 746 747 748 749 750 751 752 753 754

        // step 2. select op kernel
        auto run_phi_kernel = false;
        if (phi::KernelFactory::Instance().HasCompatiblePhiKernel(
                op_with_kernel->Type())) {
          auto phi_kernel_key = op_with_kernel->ChoosePhiKernel(exec_ctx);
          auto phi_kernel_name = op_with_kernel->PhiKernelSignature()->name;

          if (op_with_kernel->PhiKernel()->IsValid()) {
            run_phi_kernel = true;
          } else {
755 756
            if (!op_with_kernel->SupportsKernelType(expected_kernel_key,
                                                    exec_ctx)) {
H
HongyuJia 已提交
757 758
              auto phi_cpu_kernel_key =
                  FallBackToCpu(phi_kernel_key, *op_with_kernel);
759 760 761 762 763 764 765 766 767 768 769 770
              op_with_kernel->ResetPhiKernel(
                  new phi::Kernel(phi::KernelFactory::Instance().SelectKernel(
                      phi_kernel_name, phi_cpu_kernel_key)));
              if (op_with_kernel->PhiKernel()->IsValid()) {
                VLOG(6) << "Static mode PrepareImpl - kernel name: "
                        << phi_kernel_name
                        << " | kernel key: " << phi_cpu_kernel_key
                        << " | kernel: " << *(op_with_kernel->PhiKernel());
                op_with_kernel->ResetKernelType(new OpKernelType(
                    TransPhiKernelKeyToOpKernelType(phi_cpu_kernel_key)));
                run_phi_kernel = true;
              }
771 772 773
            }
          }
        }
774

775 776 777 778 779 780 781 782 783 784 785 786
        VLOG(4) << "if run phi kernel? : " << run_phi_kernel;
        if (!run_phi_kernel) {
          op_with_kernel->ChooseKernel(exec_ctx);
          op_func_node.kernel_func_ = *op_with_kernel->kernel_func();
        } else {
          op_func_node.phi_kernel_ = op_with_kernel->PhiKernel();
        }
        auto kernel_type = *(op_with_kernel->kernel_type());
        if (kernel_type.place_ != dev_ctx->GetPlace()) {
          dev_ctx = pool.Get(kernel_type.place_);
        }
        op_func_node.dev_ctx_ = dev_ctx;
787 788 789
        op_func_node.type_ =
            AnalyseOpFuncType(op_func_node, kernel_type.place_);

790 791 792 793 794 795 796 797 798 799 800 801 802
        VLOG(3) << op_with_kernel->Type()
                << " : finally selected kernel_key: " << kernel_type;

        // step 3. data transform
        VariableValueMap& ins_map_temp = runtime_context.inputs;
        VariableValueMap& outs_map_temp = runtime_context.outputs;
        ApplyDataTransform(kernel_type,
                           place,
                           &ins_map_temp,
                           &outs_map_temp,
                           var_scope,
                           &op_func_node,
                           vec_func_list,
803 804
                           use_local_scope,
                           skip_run);
805 806 807 808 809
        VLOG(4) << "apply data transform done. ";
        // step 4. infershape, see OperatorWithKernel::RunImpl in operator.cc
        // for why.
        if (!(op->HasAttr(kAllKernelsMustComputeRuntimeShape) &&
              op->Attr<bool>(kAllKernelsMustComputeRuntimeShape))) {
810
          VLOG(4) << "infer shape";
811 812 813 814 815 816
          InterpretercoreInferShapeContext infer_shape_ctx(*op,
                                                           runtime_context);
          // TODO(Aurelius84): In case of control flow ops, they are NOT
          // inheritted from OperatorWithKernel.
          op_with_kernel->Info().infer_shape_(&infer_shape_ctx);
        }
817

818 819 820 821 822
        // step 5. run kernel
        if (run_phi_kernel) {
          phi::KernelContext phi_kernel_context;
          op_with_kernel->BuildPhiKernelContext(
              runtime_context, dev_ctx, &phi_kernel_context);
823 824 825 826 827 828 829
          if (!skip_run) {
            (*op_func_node.phi_kernel_)(&phi_kernel_context);
          } else {
            FakeInitializeOutputs(op_func_node.phi_kernel_,
                                  op_with_kernel->PhiKernelSignature(),
                                  &phi_kernel_context);
          }
830 831
        } else {
          // the place of exec_ctx maybe has changed.
832 833 834 835 836 837
          if (!skip_run) {
            op_func_node.kernel_func_(ExecutionContext(
                *op_with_kernel, *runtime_scope, *dev_ctx, runtime_context));
          } else {
            // TODO(zhiqiu): is it needed to support fluid kernel?
          }
838
        }
839

840 841 842 843 844 845
        // post-process grad_op.outputs if need cast complex grad into real
        // grad.
        // NOTE(Aurelius84): insert a transfer_dtype_op inplacely to cast it.
        if (framework::IsComplexType(kernel_type.data_type_)) {
          interpreter::HandleComplexGradToRealGrad(op_func_node,
                                                   place,
846
                                                   output_name_map,
847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867
                                                   &runtime_context.outputs,
                                                   var_scope,
                                                   vec_func_list,
                                                   local_scope);
        }
        if (!op_func_node.inplace_back_map.empty()) {
          auto& m = op_func_node.inplace_back_map;
          // NOTE(zhiqiu): same logic as TransferInplaceVarsBack() in
          // operator.cc
          for (auto& p : m) {
            auto* transformed_tensor =
                GetMutableLoDTensorOrSelectedRowsValueFromVar(
                    local_scope->FindVar(var_scope->GetNameById(p.first)));
            auto* original_tensor =
                GetMutableLoDTensorOrSelectedRowsValueFromVar(
                    local_scope->FindVar(var_scope->GetNameById(p.second)));
            original_tensor->ShareDataWith(*transformed_tensor);
            VLOG(4) << "Transfer inplace variable back form "
                    << var_scope->GetNameById(p.first) << " to "
                    << var_scope->GetNameById(p.second);
          }
868
        }
869

870 871 872 873 874
        // for debug nan/inf
        if (FLAGS_check_nan_inf) {
          VLOG(4) << "Check nan/inf";
          framework::details::CheckOpHasNanOrInf(*op, *runtime_scope, place);
        }
875
      }
876
    } catch (platform::EnforceNotMet& ex) {
877
      framework::InsertCallStackInfo(op_type, op->Attrs(), &ex);
878 879 880 881
      throw std::move(ex);
    } catch (platform::EOFException&) {
      std::rethrow_exception(std::current_exception());
    } catch (std::exception& ex) {
882
      LOG(WARNING) << op_type << " raises an exception "
883 884 885 886
                   << platform::demangle(typeid(ex).name()) << ", "
                   << ex.what();
      std::rethrow_exception(std::current_exception());
    } catch (...) {
887
      LOG(WARNING) << op_type << " raises an unknown exception";
888
      std::rethrow_exception(std::current_exception());
889
    }
W
wanghuancoder 已提交
890

891 892 893
    VLOG(4) << "End run " << place << " "
            << op_func_node.operator_base_->DebugStringEx(local_scope);

L
Leo Chen 已提交
894
    vec_func_list->emplace_back(op_func_node);
895

L
Leo Chen 已提交
896
    // gc---------------------------------------------
L
Leo Chen 已提交
897
    auto iter = unused_var_map.find(op);
W
wanghuancoder 已提交
898
    if (iter == unused_var_map.end()) {
899
      interpreter::LogDeviceMemoryStats(place);
W
wanghuancoder 已提交
900 901 902 903 904 905 906 907
      continue;
    }

    auto& delete_vars = iter->second;
    std::deque<std::shared_ptr<memory::Allocation>>* garbages =
        new std::deque<std::shared_ptr<memory::Allocation>>();

    for (auto& var_name : delete_vars) {
908
      auto* var = local_scope->FindVar(var_name);
909
      if (var == nullptr || skip_gc_vars.find(var_name) != skip_gc_vars.end()) {
W
wanghuancoder 已提交
910 911 912
        continue;
      }

913
      VLOG(6) << "Erase variable " << var_name;
914
      if (var->IsType<phi::DenseTensor>()) {
W
wanghuancoder 已提交
915
        garbages->emplace_back(
916
            var->GetMutable<phi::DenseTensor>()->MoveMemoryHolder());
W
wanghuancoder 已提交
917 918 919
      }
    }
    delete garbages;  // free mem
920 921

    interpreter::LogDeviceMemoryStats(place);
W
wanghuancoder 已提交
922
  }
923
  return skip_run;
W
wanghuancoder 已提交
924 925
}

926 927 928 929 930 931 932 933 934 935 936 937
void LogDeviceMemoryStats(const platform::Place& place) {
  if (FLAGS_new_executor_log_memory_stats && platform::is_gpu_place(place)) {
    VLOG(0) << "memory_allocated: "
            << static_cast<double>(memory::DeviceMemoryStatCurrentValue(
                   "Allocated", place.device)) /
                   1024 / 1024
            << " MB";
    VLOG(0) << "max_memory_allocated: "
            << static_cast<double>(memory::DeviceMemoryStatPeakValue(
                   "Allocated", place.device)) /
                   1024 / 1024
            << " MB";
938 939 940
  }
}

941
}  // namespace interpreter
W
wanghuancoder 已提交
942 943
}  // namespace framework
}  // namespace paddle