new_executor_defs.cc 27.1 KB
Newer Older
L
Leo Chen 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// 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.

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

L
Leo Chen 已提交
17 18 19 20 21
#include <map>
#include <string>
#include <unordered_map>
#include <vector>

22
#include "paddle/phi/core/utils/rw_lock.h"
L
Leo Chen 已提交
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43

#define SCOPE_VARS_READER_LOCK AutoRDLock auto_lock(&vars_lock_);
#define SCOPE_VARS_WRITER_LOCK AutoWRLock auto_lock(&vars_lock_);

namespace paddle {
namespace framework {

InterpretercoreInferShapeContext::InterpretercoreInferShapeContext(
    const OperatorBase& op, const RuntimeContext& ctx)
    : op_(op), ctx_(ctx), can_skip_lod_(false) {}

bool InterpretercoreInferShapeContext::HasInput(const std::string& name) const {
  // has only one input
  const auto& ins = ctx_.inputs;
  auto it = ins.find(name);
  if (it == ins.end()) {
    return false;
  }
  const auto& in = it->second;
  if (in.size() == 0) return false;
  PADDLE_ENFORCE_EQ(
44 45
      in.size(),
      1UL,
L
Leo Chen 已提交
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
      platform::errors::InvalidArgument(
          "Input %s should not contain more than one inputs.", name));
  return in[0] != nullptr;
}

bool InterpretercoreInferShapeContext::HasOutput(
    const std::string& name) const {
  // has only one output
  const auto& outs = ctx_.outputs;
  auto it = outs.find(name);
  if (it == outs.end()) {
    return false;
  }
  const auto& out = it->second;
  if (out.size() == 0) {
    return false;
  }
  PADDLE_ENFORCE_EQ(
64 65
      out.size(),
      1UL,
L
Leo Chen 已提交
66 67 68 69 70
      platform::errors::InvalidArgument(
          "Output %s should not contain more than one outputs.", name));
  return out[0] != nullptr;
}

71 72 73 74
bool InterpretercoreInferShapeContext::HasAttr(const std::string& name) const {
  return op_.HasAttr(name);
}

L
Leo Chen 已提交
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
bool InterpretercoreInferShapeContext::HasInputs(
    const std::string& name) const {
  const auto& ins = ctx_.inputs;
  auto it = ins.find(name);
  if (it == ins.end() || it->second.empty()) {
    return false;
  }
  for (auto& input : it->second) {
    if (input == nullptr) {
      return false;
    }
  }
  return true;
}

90 91
bool InterpretercoreInferShapeContext::HasOutputs(const std::string& name,
                                                  bool allow_null) const {
L
Leo Chen 已提交
92 93 94 95 96
  const auto& outs = ctx_.outputs;
  auto it = outs.find(name);
  if (it == outs.end() || it->second.empty()) {
    return false;
  }
97 98 99
  if (allow_null) {
    for (auto& output : it->second) {
      if (output != nullptr) return true;
L
Leo Chen 已提交
100
    }
101 102 103 104 105 106
    return false;
  } else {
    for (auto& output : it->second) {
      if (output == nullptr) return false;
    }
    return true;
L
Leo Chen 已提交
107 108 109 110
  }
}

AttrReader InterpretercoreInferShapeContext::Attrs() const {
111
  return AttrReader(op_.Attrs(), op_.RuntimeAttrs());
L
Leo Chen 已提交
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
}

std::vector<std::string> InterpretercoreInferShapeContext::Inputs(
    const std::string& name) const {
  return op_.Inputs(name);
}

std::vector<std::string> InterpretercoreInferShapeContext::Outputs(
    const std::string& name) const {
  return op_.Outputs(name);
}

std::string InterpretercoreInferShapeContext::GetInputNameByIdx(
    size_t idx) const {
  auto& op_proto =
      paddle::framework::OpInfoMap::Instance().Get(op_.Type()).proto_;
128 129
  PADDLE_ENFORCE_LT(idx,
                    op_proto->inputs().size(),
L
Leo Chen 已提交
130 131 132
                    platform::errors::OutOfRange(
                        "The index should be less than the size of inputs of "
                        "operator %s, but got index is %d and size is %d",
133 134 135
                        op_.Type(),
                        idx,
                        op_proto->inputs().size()));
L
Leo Chen 已提交
136 137 138 139 140 141 142
  return op_proto->inputs()[idx].name();
}

std::string InterpretercoreInferShapeContext::GetOutputNameByIdx(
    size_t idx) const {
  auto& op_proto =
      paddle::framework::OpInfoMap::Instance().Get(op_.Type()).proto_;
143 144
  PADDLE_ENFORCE_LT(idx,
                    op_proto->outputs().size(),
L
Leo Chen 已提交
145 146 147
                    platform::errors::OutOfRange(
                        "The index should be less than the size of outputs of "
                        "operator %s, but got index is %d and size is %d",
148 149 150
                        op_.Type(),
                        idx,
                        op_proto->outputs().size()));
L
Leo Chen 已提交
151 152 153 154 155
  return op_proto->outputs()[idx].name();
}

void InterpretercoreInferShapeContext::ShareDim(const std::string& in,
                                                const std::string& out,
156 157
                                                size_t i,
                                                size_t j) {
L
Leo Chen 已提交
158 159
  auto in_it = ctx_.inputs.find(in);
  auto out_it = ctx_.outputs.find(out);
160 161
  PADDLE_ENFORCE_NE(in_it,
                    ctx_.inputs.end(),
L
Leo Chen 已提交
162 163
                    platform::errors::NotFound("Input %s does not exist.", in));
  PADDLE_ENFORCE_NE(
164 165
      out_it,
      ctx_.outputs.end(),
L
Leo Chen 已提交
166
      platform::errors::NotFound("Output %s does not exist.", out));
167 168
  PADDLE_ENFORCE_LT(i,
                    in_it->second.size(),
L
Leo Chen 已提交
169 170 171
                    platform::errors::InvalidArgument(
                        "The index of input dimension is out of range, "
                        "excepted index less than %zu, but received %zu.",
172 173 174 175
                        in_it->second.size(),
                        i));
  PADDLE_ENFORCE_LT(j,
                    out_it->second.size(),
L
Leo Chen 已提交
176 177 178
                    platform::errors::InvalidArgument(
                        "The index of output dimension is out of range, "
                        "excepted index less than %zu, but received %zu.",
179 180
                        out_it->second.size(),
                        j));
L
Leo Chen 已提交
181 182 183 184 185

  Variable* in_var = in_it->second[i];
  Variable* out_var = out_it->second[j];

  PADDLE_ENFORCE_EQ(
186 187
      in_var->Type(),
      out_var->Type(),
L
Leo Chen 已提交
188 189 190
      platform::errors::InvalidArgument(
          "The type of input (%s) and output (%s) are inconsistent.", in, out));

191 192 193
  if (in_var->IsType<phi::SelectedRows>()) {
    auto& in_sele_rows = in_var->Get<phi::SelectedRows>();
    auto out_sele_rows = out_var->GetMutable<phi::SelectedRows>();
L
Leo Chen 已提交
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
    out_sele_rows->mutable_value()->Resize(in_sele_rows.value().dims());
    out_sele_rows->set_rows(in_sele_rows.rows());
    out_sele_rows->set_height(in_sele_rows.height());
  } else if (in_var->IsType<framework::LoDTensor>()) {
    auto& in_lod_tensor = in_var->Get<framework::LoDTensor>();
    auto* out_lod_tensor = out_var->GetMutable<framework::LoDTensor>();
    out_lod_tensor->Resize(in_lod_tensor.dims());
  } else {
    PADDLE_THROW(platform::errors::Unimplemented(
        "Currently, the input type of ShareDim only can be LoDTensor "
        "or SelectedRows."));
  }
}

void InterpretercoreInferShapeContext::ShareAllLoD(
    const std::string& in, const std::string& out) const {
  auto in_it = ctx_.inputs.find(in);
  auto out_it = ctx_.outputs.find(out);
212 213
  PADDLE_ENFORCE_NE(in_it,
                    ctx_.inputs.end(),
L
Leo Chen 已提交
214 215
                    platform::errors::NotFound(
                        "Input [%s] found error in Op [%s]", in, op_.Type()));
216 217
  PADDLE_ENFORCE_NE(out_it,
                    ctx_.outputs.end(),
L
Leo Chen 已提交
218 219 220 221 222 223 224
                    platform::errors::NotFound(
                        "Output [%s] found error in Op [%s]", out, op_.Type()));

  auto& in_var_list = in_it->second;
  auto& out_var_list = out_it->second;

  PADDLE_ENFORCE_EQ(
225 226
      in_var_list.size(),
      out_var_list.size(),
L
Leo Chen 已提交
227 228 229 230 231 232 233 234 235 236 237 238 239 240
      platform::errors::PreconditionNotMet(
          "Op [%s]: Input var size should be equal with output var size",
          op_.Type()));

  auto& out_var_names = op_.Outputs(out);

  for (size_t i = 0; i < in_var_list.size(); ++i) {
    if (out_var_names[i] == framework::kEmptyVarName) {
      continue;
    }

    Variable* in_var = in_var_list[i];
    if (!in_var->IsType<LoDTensor>()) return;
    Variable* out_var = out_var_list[i];
241 242
    PADDLE_ENFORCE_EQ(out_var->IsType<LoDTensor>(),
                      true,
L
Leo Chen 已提交
243 244
                      platform::errors::PreconditionNotMet(
                          "The %d-th output of Output(%s) must be LoDTensor.",
245 246
                          i,
                          out_var_names[i]));
L
Leo Chen 已提交
247 248 249 250 251 252 253 254 255 256 257 258
    auto& in_tensor = in_var->Get<LoDTensor>();
    auto* out_tensor = out_var->GetMutable<LoDTensor>();
    out_tensor->set_lod(in_tensor.lod());
#ifdef PADDLE_WITH_MKLDNN
    if (in_tensor.layout() != DataLayout::kMKLDNN)
#endif
      out_tensor->set_layout(in_tensor.layout());
  }
}

void InterpretercoreInferShapeContext::ShareLoD(const std::string& in,
                                                const std::string& out,
259 260
                                                size_t i,
                                                size_t j) const {
L
Leo Chen 已提交
261 262 263 264 265
  if (can_skip_lod_) {
    return;
  }
  auto in_it = ctx_.inputs.find(in);
  auto out_it = ctx_.outputs.find(out);
266 267
  PADDLE_ENFORCE_NE(in_it,
                    ctx_.inputs.end(),
L
Leo Chen 已提交
268 269
                    platform::errors::NotFound("Input %s does not exist.", in));
  PADDLE_ENFORCE_NE(
270 271
      out_it,
      ctx_.outputs.end(),
L
Leo Chen 已提交
272
      platform::errors::NotFound("Output %s does not exist.", out));
273 274
  PADDLE_ENFORCE_LT(i,
                    in_it->second.size(),
L
Leo Chen 已提交
275 276 277
                    platform::errors::InvalidArgument(
                        "The index of input dimension is out of range, "
                        "excepted index less than %zu, but received %zu.",
278 279 280 281
                        in_it->second.size(),
                        i));
  PADDLE_ENFORCE_LT(j,
                    out_it->second.size(),
L
Leo Chen 已提交
282 283 284
                    platform::errors::InvalidArgument(
                        "The index of output dimension is out of range, "
                        "excepted index less than %zu, but received %zu.",
285 286
                        out_it->second.size(),
                        j));
L
Leo Chen 已提交
287 288 289 290 291

  Variable* in_var = in_it->second.at(i);
  if (!in_var->IsType<LoDTensor>()) return;
  Variable* out_var = out_it->second.at(j);
  PADDLE_ENFORCE_EQ(
292 293
      out_var->IsType<LoDTensor>(),
      true,
L
Leo Chen 已提交
294 295 296 297 298 299 300 301
      platform::errors::InvalidArgument(
          "The %zu-th output of Output(%s) must be LoDTensor.", j, out));
  auto& in_tensor = in_var->Get<LoDTensor>();
  auto* out_tensor = out_var->GetMutable<LoDTensor>();
  out_tensor->set_lod(in_tensor.lod());

// TODO(dzhwinter) : reuse ShareLoD in most operators.
// Need to call ShareLayout explicitly in sequence related ops.
302
// Shall we have a better method to shared info between in/out phi::DenseTensor?
L
Leo Chen 已提交
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
#ifdef PADDLE_WITH_MKLDNN
  // Fix me: ugly workaround below
  // Correct solution:
  //    set_layout() should NOT be called here (i.e. ShareLoD). Instead,
  //    layout of output tensor should be set "manually" in Compute()
  //    of each OPKernel. The reason layout should NOT be shared between
  //    input and output "automatically" (now by InferShape()->ShareLoD())
  //    is that layout transform may occur after InferShape().
  // Workaround:
  //    Skip set_layout() when input layout is kMKLDNN
  //    This is to avoid kMKLDNN is populated wrongly into a non-MKLDNN
  //    OPKernel. In all MKLDNN OPkernel, set_layout(kMKLDNN) should be called
  //    in Compute()
  if (in_tensor.layout() != DataLayout::kMKLDNN)
#endif
    out_tensor->set_layout(in_tensor.layout());
}

int32_t InterpretercoreInferShapeContext::GetLoDLevel(const std::string& in,
                                                      size_t i) const {
  PADDLE_THROW(platform::errors::PreconditionNotMet(
      "GetLoDLevel is only used in compile time. The calculation of "
      "output's actual lod is different among operators so that should be "
      "set in the runtime kernel."));
}

void InterpretercoreInferShapeContext::SetLoDLevel(const std::string& out,
                                                   int32_t lod_level,
                                                   size_t j) const {
  PADDLE_THROW(platform::errors::PreconditionNotMet(
      "SetLoDLevel is only used in compile time. The calculation of "
      "output's actual lod is different among operators so that should be "
      "set in the runtime kernel."));
}

bool InterpretercoreInferShapeContext::IsRuntime() const { return true; }

340 341 342 343 344 345
bool InterpretercoreInferShapeContext::IsRunMKLDNNKernel() const {
  try {
    auto& op_with_kernel = dynamic_cast<const OperatorWithKernel&>(op_);
    return ((op_with_kernel.kernel_type()) &&
            (op_with_kernel.kernel_type()->data_layout_ ==
             framework::DataLayout::kMKLDNN));
346
  } catch (std::bad_cast& exp) {
347 348 349 350
    return false;
  }
}

L
Leo Chen 已提交
351
// TODO(paddle-dev): Can this be template?
C
Chen Weihang 已提交
352
paddle::small_vector<InferShapeVarPtr, phi::kInputSmallVectorSize>
353
InterpretercoreInferShapeContext::GetInputVarPtrs(
354
    const std::string& name) const {
L
Leo Chen 已提交
355
  const std::vector<Variable*>& vars = InputVars(name);
C
Chen Weihang 已提交
356
  paddle::small_vector<InferShapeVarPtr, phi::kInputSmallVectorSize> res;
L
Leo Chen 已提交
357 358 359 360 361
  res.reserve(vars.size());
  res.insert(res.begin(), vars.begin(), vars.end());
  return res;
}

C
Chen Weihang 已提交
362
paddle::small_vector<InferShapeVarPtr, phi::kOutputSmallVectorSize>
363 364
InterpretercoreInferShapeContext::GetOutputVarPtrs(
    const std::string& name) const {
L
Leo Chen 已提交
365
  const std::vector<Variable*>& vars = OutputVars(name);
C
Chen Weihang 已提交
366
  paddle::small_vector<InferShapeVarPtr, phi::kOutputSmallVectorSize> res;
L
Leo Chen 已提交
367 368 369 370 371 372 373 374 375
  res.reserve(vars.size());
  res.insert(res.begin(), vars.begin(), vars.end());
  return res;
}

DDim InterpretercoreInferShapeContext::GetInputDim(
    const std::string& name) const {
  const std::vector<Variable*>& vars = InputVars(name);
  PADDLE_ENFORCE_EQ(
376 377
      vars.size(),
      1UL,
L
Leo Chen 已提交
378 379
      platform::errors::InvalidArgument(
          "Input(%s) should hold one element, but now it holds %zu elements.",
380 381
          name,
          vars.size()));
L
Leo Chen 已提交
382 383 384 385 386 387 388 389 390
  return this->GetDim(vars[0]);
}

std::vector<DDim> InterpretercoreInferShapeContext::GetInputsDim(
    const std::string& name) const {
  const std::vector<Variable*>& vars = InputVars(name);
  return GetDims(vars);
}

391 392 393 394 395
proto::VarType::Type InterpretercoreInferShapeContext::GetInputVarType(
    const std::string& name) const {
  return GetVarType(InputVars(name).at(0));
}

L
Leo Chen 已提交
396 397 398 399 400 401 402 403 404 405 406 407 408 409 410
std::vector<proto::VarType::Type>
InterpretercoreInferShapeContext::GetInputsVarType(
    const std::string& name) const {
  return GetVarTypes(InputVars(name));
}

std::vector<proto::VarType::Type>
InterpretercoreInferShapeContext::GetOutputsVarType(
    const std::string& name) const {
  return GetVarTypes(OutputVars(name));
}

void InterpretercoreInferShapeContext::SetOutputDim(const std::string& name,
                                                    const DDim& dim) {
  auto& vars = OutputVars(name);
411
  PADDLE_ENFORCE_EQ(
412 413
      vars.size(),
      1UL,
414 415
      platform::errors::InvalidArgument("Output(%s) should hold one element, "
                                        "but now it holds %zu elements.",
416 417
                                        name,
                                        vars.size()));
L
Leo Chen 已提交
418 419 420 421 422 423 424 425 426
  SetDim(vars[0], dim);
}

void InterpretercoreInferShapeContext::SetOutputsDim(
    const std::string& name, const std::vector<DDim>& dims) {
  auto& vars = OutputVars(name);
  SetDims(vars, dims);
}

427 428 429 430 431 432 433 434 435 436
const phi::ArgumentMappingFn*
InterpretercoreInferShapeContext::GetPhiArgumentMappingFn() const {
  return phi::OpUtilsMap::Instance().GetArgumentMappingFn(op_.Type());
}

const phi::KernelSignature*
InterpretercoreInferShapeContext::GetPhiDefaultKernelSignature() const {
  return &phi::DefaultKernelSignatureMap::Instance().Get(op_.Type());
}

L
Leo Chen 已提交
437 438 439 440 441 442 443 444 445
void InterpretercoreInferShapeContext::SetSkipLoD(bool skip) {
  can_skip_lod_ = skip;
}

DDim InterpretercoreInferShapeContext::GetDim(Variable* var) const {
  PADDLE_ENFORCE_NOT_NULL(
      var, platform::errors::InvalidArgument("Input variable is nullptr."));
  if (var->IsType<LoDTensor>()) {
    return var->Get<LoDTensor>().dims();
446 447
  } else if (var->IsType<phi::SelectedRows>()) {
    return var->Get<phi::SelectedRows>().GetCompleteDims();
L
Leo Chen 已提交
448 449 450 451 452 453 454 455 456 457 458 459
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "Only LoDTensor or SelectedRows support 'GetDim', but input "
        "Variable's type is %s.",
        ToTypeName(var->Type())));
  }
}

std::vector<DDim> InterpretercoreInferShapeContext::GetDims(
    const std::vector<Variable*>& vars) const {
  std::vector<DDim> ret;
  ret.reserve(vars.size());
460 461 462 463
  std::transform(
      vars.begin(), vars.end(), std::back_inserter(ret), [this](Variable* var) {
        return this->GetDim(var);
      });
L
Leo Chen 已提交
464 465 466 467 468 469 470 471 472 473 474 475
  return ret;
}

std::vector<DDim> InterpretercoreInferShapeContext::GetRepeatedDims(
    const std::string& name) const {
  PADDLE_THROW(platform::errors::PreconditionNotMet(
      "GetRepeatedDims method only ban be used in compile time."));
}

void InterpretercoreInferShapeContext::SetDim(Variable* var, const DDim& dim) {
  if (var->IsType<LoDTensor>()) {
    var->GetMutable<LoDTensor>()->Resize(dim);
476 477
  } else if (var->IsType<phi::SelectedRows>()) {
    var->GetMutable<phi::SelectedRows>()->set_height(dim[0]);
L
Leo Chen 已提交
478 479 480 481 482 483 484 485 486 487 488
  } else {
    PADDLE_THROW(platform::errors::Unimplemented(
        "Variable type error, expect LoDTensor or SelectedRows, but received "
        "(%s).",
        ToTypeName(var->Type())));
  }
}

void InterpretercoreInferShapeContext::SetDims(
    const std::vector<Variable*>& vars, const std::vector<DDim>& dims) {
  size_t length = vars.size();
489 490
  PADDLE_ENFORCE_EQ(length,
                    dims.size(),
L
Leo Chen 已提交
491 492 493 494
                    platform::errors::InvalidArgument(
                        "The number of input variables do not match the "
                        "number of input dimensions, the number of variables "
                        "is %zu, the number of dimensions is %zu.",
495 496
                        length,
                        dims.size()));
L
Leo Chen 已提交
497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515
  for (size_t i = 0; i < length; ++i) {
    if (vars[i] == nullptr) {
      continue;
    }
    SetDim(vars[i], dims[i]);
  }
}

void InterpretercoreInferShapeContext::SetRepeatedDims(
    const std::string& name, const std::vector<DDim>& dims) {
  PADDLE_THROW(platform::errors::PreconditionNotMet(
      "SetRepeatedDims method only can be used in compile time."));
}

std::vector<proto::VarType::Type> InterpretercoreInferShapeContext::GetVarTypes(
    const std::vector<Variable*>& vars) const {
  std::vector<proto::VarType::Type> retv;
  retv.resize(vars.size());
  std::transform(
516 517 518
      vars.begin(),
      vars.end(),
      retv.begin(),
L
Leo Chen 已提交
519
      std::bind(std::mem_fn(&InterpretercoreInferShapeContext::GetVarType),
520 521
                this,
                std::placeholders::_1));
L
Leo Chen 已提交
522 523 524 525 526 527 528 529 530 531 532 533
  return retv;
}

proto::VarType::Type InterpretercoreInferShapeContext::GetVarType(
    Variable* var) const {
  return ToVarType(var->Type());
}

const std::vector<Variable*>& InterpretercoreInferShapeContext::InputVars(
    const std::string& name) const {
  auto it = ctx_.inputs.find(name);
  PADDLE_ENFORCE_NE(
534 535 536 537
      it,
      ctx_.inputs.end(),
      platform::errors::NotFound(
          "Operator (%s) does not have the input (%s).", op_.Type(), name));
L
Leo Chen 已提交
538 539 540 541 542 543 544
  return it->second;
}

const std::vector<Variable*>& InterpretercoreInferShapeContext::OutputVars(
    const std::string& name) const {
  auto it = ctx_.outputs.find(name);
  PADDLE_ENFORCE_NE(
545 546
      it,
      ctx_.outputs.end(),
L
Leo Chen 已提交
547 548 549 550 551 552 553
      platform::errors::NotFound(
          "Operator (%s) does not have the outputs (%s).", op_.Type(), name));
  return it->second;
}

VariableScope::VariableScope(Scope* scope) {
  // for @EMPTY@ variable
W
wanghuancoder 已提交
554
  name2id_[kEmptyVarName] = kEmptyVarIndex;
555
  var_list_.push_back(nullptr);
L
Leo Chen 已提交
556 557 558
  vec_meta_info_.emplace_back(0, nullptr);
  scope_ = scope;
  PADDLE_ENFORCE_NE(
559 560
      scope,
      nullptr,
L
Leo Chen 已提交
561 562 563 564
      platform::errors::PreconditionNotMet(
          "You have passed a nullptr to construct VariableScope."));
}

565
VariableScope::~VariableScope() {}
L
Leo Chen 已提交
566

567 568 569 570
Scope* VariableScope::GetMutableScope() const { return scope_; }

Scope* VariableScope::GetMutableLocalScope() const { return local_scope_; }

571 572
void VariableScope::SetScope(Scope* scope) { scope_ = scope; }

573 574 575 576
void VariableScope::SetLocalScope(Scope* local_scope) {
  VLOG(4) << "Set local scope: " << local_scope;
  local_scope_ = local_scope;
}
L
Leo Chen 已提交
577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593

// Get variable id by name, return -1 if not found
int VariableScope::GetIdByName(const std::string& name) const {
  auto it = name2id_.find(name);
  if (it != name2id_.end()) {
    return it->second;
  }
  return -1;
}

// Get variable name by id, return "" if not found
std::string VariableScope::GetNameById(int id) const {
  // NOTE(zhiqiu): do not use vec_meta_info_[id].vardesc_->Name() since
  // vec_meta_info_[id] may be nullptr,
  // typically when the target variable is not existed in the original program
  // desc, but created by interpretercore.
  // For example, created and used by d2h_copy or h2d_copy operator.
594 595
  auto it = std::find_if(name2id_.begin(),
                         name2id_.end(),
L
Leo Chen 已提交
596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611
                         [id](const auto& pair) { return pair.second == id; });
  if (it != name2id_.end()) {
    return it->first;
  }
  return "";
}

bool VariableScope::HasVar(const std::string& name) const {
  return name2id_.find(name) != name2id_.end();
}

int VariableScope::VarId(const std::string& name) const {
  CheckExist(name);
  return name2id_.at(name);
}

612
Variable* VariableScope::VarRef(int id) const { return var_list_[id]; }
L
Leo Chen 已提交
613

614
size_t VariableScope::VarSize() const { return name2id_.size(); }
L
Leo Chen 已提交
615 616

void VariableScope::AddVar(const std::string& name,
617 618 619 620 621
                           framework::VarDesc* var_desc) {
  if (!HasVar(name)) {
    auto id = VarSize();
    name2id_[name] = id;
    vec_meta_info_.emplace_back(0, var_desc);
622 623 624 625 626
    if (local_scope_ != nullptr) {
      var_list_.push_back(local_scope_->FindVar(name));
    } else {
      var_list_.push_back(scope_->FindVar(name));
    }
627 628 629 630 631
    PADDLE_ENFORCE_EQ(
        var_list_.size(),
        name2id_.size(),
        platform::errors::InvalidArgument(
            "The size of var_list and name2id map should be equal"));
L
Leo Chen 已提交
632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650
  }
}

void VariableScope::SetVarDesc(const std::string& name,
                               framework::VarDesc* var_desc) {
  CheckExist(name);
  vec_meta_info_[VarId(name)].var_desc_ = var_desc;
}

paddle::framework::VarDesc* VariableScope::VarDesc(
    const std::string& name) const {
  return VarDesc(VarId(name));
}

paddle::framework::VarDesc* VariableScope::VarDesc(int id) const {
  CheckExist(id);
  return vec_meta_info_[id].var_desc_;
}

651 652 653 654 655 656 657 658 659 660
void VariableScope::SetVarSikpInplace(const std::string& name, bool skip) {
  CheckExist(name);
  vec_meta_info_[VarId(name)].sikp_inplace_ = skip;
}

bool VariableScope::GetVarSikpInplace(int id) const {
  CheckExist(id);
  return vec_meta_info_[id].sikp_inplace_;
}

L
Leo Chen 已提交
661
void VariableScope::CheckExist(int id) const {
662
  PADDLE_ENFORCE_LT(id,
663
                    name2id_.size(),
L
Leo Chen 已提交
664 665
                    platform::errors::PreconditionNotMet(
                        "Required var_id < %d, but received var_id = %d.",
666
                        name2id_.size(),
667
                        id));
L
Leo Chen 已提交
668 669 670
}

void VariableScope::CheckExist(const std::string& name) const {
671
  PADDLE_ENFORCE_EQ(
672 673
      HasVar(name),
      true,
674
      platform::errors::NotFound("%s not in VariableScope.", name));
L
Leo Chen 已提交
675 676
}

677 678
Instruction::Instruction(size_t id,
                         OpFuncNode&& op_func_node,
L
Leo Chen 已提交
679 680
                         const platform::DeviceContext& dev_ctx)
    : id_(id), op_func_node_(op_func_node), dev_ctx_(dev_ctx) {
681 682
  PADDLE_ENFORCE_GE(id,
                    0,
683 684
                    platform::errors::PreconditionNotMet(
                        "Required id >= 0, but received id = %d", id));
L
Leo Chen 已提交
685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704
}

size_t Instruction::Id() const { return id_; }

const std::map<std::string, std::vector<int>>& Instruction::Inputs() const {
  return op_func_node_.input_index;
}

const std::map<std::string, std::vector<int>>& Instruction::Outputs() const {
  return op_func_node_.output_index;
}

const std::unordered_set<int>& Instruction::NoDataTransformVars() const {
  return op_func_node_.no_data_transform_index;
}

OpKernelComputeFunc Instruction::KernelFunc() const {
  return op_func_node_.kernel_func_;
}

705 706 707
phi::Kernel* Instruction::PhiKernel() const {
  return op_func_node_.phi_kernel_;
}
708

L
Leo Chen 已提交
709 710
OpFuncType Instruction::KernelType() const { return op_func_node_.type_; }

711 712 713 714
const std::map<int, int>& Instruction::InplaceBackMap() const {
  return op_func_node_.inplace_back_map;
}

L
Leo Chen 已提交
715 716
OperatorBase* Instruction::OpBase() const {
  auto op_base = op_func_node_.operator_base_;
717 718 719
  PADDLE_ENFORCE_NOT_NULL(
      op_base,
      platform::errors::PreconditionNotMet("op_base shall not be nullptr."));
L
Leo Chen 已提交
720 721 722
  return op_base.get();
}

723 724 725
NextInstructionList& Instruction::NextInstructions() {
  return next_instruction_;
}
L
Leo Chen 已提交
726

727
const NextInstructionList& Instruction::NextInstructions() const {
L
Leo Chen 已提交
728 729 730
  return next_instruction_;
}

731
void Instruction::AddGCCheckVar(size_t id) { gc_check_vars_.push_back(id); }
L
Leo Chen 已提交
732 733

const std::vector<size_t>& Instruction::GCCheckVars() const {
734
  return gc_check_vars_;
L
Leo Chen 已提交
735 736 737 738 739 740 741 742 743 744 745 746 747 748
}

void Instruction::ResetContext(const VariableValueMap& in_vars,
                               const VariableValueMap& out_vars) {
  runtime_ctx_.reset(new RuntimeContext(in_vars, out_vars));
  infershape_ctx_.reset(
      new InterpretercoreInferShapeContext(*OpBase(), *runtime_ctx_.get()));
  // NOTE: Because execution_ctx_ is constructed by `scope&`, so we fake an
  // empty here to avoid illegal local reference.
  static framework::Scope scope_;
  execution_ctx_.reset(
      new ExecutionContext(*OpBase(), scope_, dev_ctx_, *runtime_ctx_.get()));
}

749 750 751 752 753 754 755 756 757 758
void Instruction::ResetContextWithScope(const VariableValueMap& in_vars,
                                        const VariableValueMap& out_vars,
                                        const framework::Scope& scope) {
  runtime_ctx_.reset(new RuntimeContext(in_vars, out_vars));
  infershape_ctx_.reset(
      new InterpretercoreInferShapeContext(*OpBase(), *runtime_ctx_.get()));
  execution_ctx_.reset(
      new ExecutionContext(*OpBase(), scope, dev_ctx_, *runtime_ctx_.get()));
}

L
Leo Chen 已提交
759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784
std::shared_ptr<RuntimeContext> Instruction::InnerRuntimeContext() const {
  return runtime_ctx_;
}

std::shared_ptr<InterpretercoreInferShapeContext>
Instruction::InnerInferShapeContext() const {
  return infershape_ctx_;
}

std::shared_ptr<ExecutionContext> Instruction::InnerExecutionContext() const {
  return execution_ctx_;
}

const platform::DeviceContext& Instruction::DeviceContext() const {
  return dev_ctx_;
}

const std::vector<std::pair<Variable*, Variable*>>& Instruction::InplaceInfo()
    const {
  return vec_inplace_in_to_out_;
}

void Instruction::AddInplace(Variable* in, Variable* out) {
  vec_inplace_in_to_out_.emplace_back(in, out);
}

785 786
void Instruction::ClearInplace() { vec_inplace_in_to_out_.clear(); }

L
Leo Chen 已提交
787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806
const std::vector<EventInter>& Instruction::InputEvents() const {
  return intput_events_;
}

const std::vector<EventInter>& Instruction::OutputEvents() const {
  return output_events_;
}

void Instruction::AddInputEvent(size_t var_id,
                                std::shared_ptr<platform::DeviceEvent> event,
                                platform::DeviceType waiter_type) {
  intput_events_.emplace_back(var_id, event, waiter_type);
}

void Instruction::AddOutputEvent(size_t var_id,
                                 std::shared_ptr<platform::DeviceEvent> event,
                                 platform::DeviceType waiter_type) {
  output_events_.emplace_back(var_id, event, waiter_type);
}

L
Leo Chen 已提交
807 808
}  // namespace framework
}  // namespace paddle