prepared_operator.h 27.6 KB
Newer Older
J
Jiabin Yang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
// 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.

#pragma once
#include <memory>
#include <string>
#include <utility>
#include <vector>
W
wanghuancoder 已提交
20

J
Jiabin Yang 已提交
21
#include "paddle/fluid/eager/eager_tensor.h"
22
#include "paddle/fluid/framework/convert_utils.h"
23 24
#include "paddle/fluid/framework/data_transform.h"
#include "paddle/fluid/framework/op_kernel_type.h"
J
Jiabin Yang 已提交
25
#include "paddle/fluid/framework/operator.h"
26
#include "paddle/fluid/framework/phi_utils.h"
27
#include "paddle/fluid/framework/type_defs.h"
28
#include "paddle/fluid/imperative/execution_context.h"
J
Jiabin Yang 已提交
29 30
#include "paddle/fluid/imperative/layer.h"
#include "paddle/fluid/imperative/type_defs.h"
J
Jiabin Yang 已提交
31
#include "paddle/fluid/imperative/var_helper.h"
32
#include "paddle/phi/common/place.h"
33
#include "paddle/phi/core/dense_tensor.h"
34
#include "paddle/phi/core/kernel_context.h"
35
#include "paddle/phi/core/selected_rows.h"
36

37 38
DECLARE_bool(use_mkldnn);

J
Jiabin Yang 已提交
39 40 41
namespace paddle {
namespace imperative {

42
const phi::DenseTensor* GetTensorFromVar(const framework::Variable& var);
J
Jiabin Yang 已提交
43

44 45 46 47 48 49 50 51
template <typename VarType>
static void SetForwardDataTypeOfGradVar(const std::shared_ptr<VarType>& var);

template <>
void SetForwardDataTypeOfGradVar<VariableWrapper>(
    const std::shared_ptr<VariableWrapper>& var) {
  if (var->HasGradVar()) {
    auto grad_var = var->GetGradVar();
52
    VLOG(6) << "Set grad var (" << grad_var->Name() << ")'s forward dtype to ("
53 54 55 56 57 58 59 60 61 62 63 64 65
            << framework::DataTypeToString(var->DataType()) << ").";
    grad_var->SetForwardDataType(var->DataType());
  }
}

template <>
void SetForwardDataTypeOfGradVar<VarBase>(const std::shared_ptr<VarBase>& var) {
  if (var->HasGradVar()) {
    auto& shared_var = var->SharedVar();
    SetForwardDataTypeOfGradVar<VariableWrapper>(shared_var);
  }
}

J
Jiabin Yang 已提交
66
template <>
67 68
void SetForwardDataTypeOfGradVar<egr::EagerVariable>(
    const std::shared_ptr<egr::EagerVariable>& var) {
J
Jiabin Yang 已提交
69 70 71 72 73
  VLOG(10) << "Var in Eager dose not support SetForwardDataTypeOfGradVar: "
           << var->name();
  // TODO(jiabin): SetForwardDataType of Grad var is not supported yet in
  // EagerMode.
}
74

75
template <typename VarType>
76
std::shared_ptr<NameVarMap<VarType>> PrepareData(
77 78
    const framework::OperatorWithKernel& op,
    const NameVarMap<VarType>& ins,
79 80
    const phi::KernelKey& expected_kernel_key,
    const phi::Place& place) {
81 82 83
  std::shared_ptr<NameVarMap<VarType>> tmp_ins_ptr = nullptr;
  for (const auto& name_pair : ins) {
    for (size_t i = 0; i < name_pair.second.size(); ++i) {
J
Jiabin Yang 已提交
84 85 86
      auto& template_var = name_pair.second[i];
      SetForwardDataTypeOfGradVar(template_var);
      const auto* tensor = GetTensorFromVar(template_var->Var());
87
      if (tensor && tensor->IsInitialized() && (tensor->memory_size() != 0)) {
88 89
        auto kernel_type_for_var = op.GetKernelTypeForVar(
            name_pair.first, *tensor, expected_kernel_key);
90 91
        if (!framework::NeedTransform(
                kernel_type_for_var, expected_kernel_key, *tensor)) {
92 93
          continue;
        } else {
J
Jiabin Yang 已提交
94 95 96
          VLOG(3) << "Transform Variable " << GetNameFromVar(template_var)
                  << " from " << kernel_type_for_var << " to "
                  << expected_kernel_key;
97 98
          VLOG(3) << GetNameFromVar(template_var)
                  << " memory size is: " << tensor->memory_size();
J
Jiabin Yang 已提交
99
          if (CheckCachedKey(template_var, expected_kernel_key)) {
100 101 102
            VLOG(3) << "Hit variable_wrapper cache: key="
                    << expected_kernel_key;
            std::shared_ptr<VariableWrapper> cache_var =
J
Jiabin Yang 已提交
103
                GetCachedValue(template_var, expected_kernel_key);
104 105 106
            if (tmp_ins_ptr == nullptr) {
              tmp_ins_ptr = std::make_shared<NameVarMap<VarType>>(ins);
            }
107 108

            const auto* tensor = GetTensorFromVar(cache_var->Var());
J
Jiabin Yang 已提交
109 110 111
            auto tmp_var =
                std::make_shared<VarType>(GetNameFromVar(template_var));
            SetType(tmp_var, GetType(template_var));
112 113
            SetTensorToVariable(
                cache_var->Var(), *tensor, tmp_var->MutableVar());
114 115
            (*tmp_ins_ptr)[name_pair.first][i] = tmp_var;
          } else {
116
            phi::DenseTensor out;
117 118 119 120
            framework::TransformData(
                expected_kernel_key, kernel_type_for_var, *tensor, &out, place);
            if (framework::NeedTransformDataType(kernel_type_for_var,
                                                 expected_kernel_key)) {
121 122 123 124 125 126
              // To avoid NameVarMap copy construction overhead in general
              // scenarios, if inplace transformed, return original input
              // directly
              if (tmp_ins_ptr == nullptr) {
                tmp_ins_ptr = std::make_shared<NameVarMap<VarType>>(ins);
              }
J
Jiabin Yang 已提交
127 128 129
              auto tmp_var =
                  std::make_shared<VarType>(GetNameFromVar(template_var));
              SetType(tmp_var, GetType(template_var));
130 131
              SetTensorToVariable(
                  template_var->Var(), out, tmp_var->MutableVar());
132
              (*tmp_ins_ptr)[name_pair.first][i] = tmp_var;
J
Jiabin Yang 已提交
133
              SetCachedValue(template_var, expected_kernel_key, tmp_var);
134 135 136 137 138 139
              VLOG(3) << "Set cache to variable_wrapper: key="
                      << expected_kernel_key;
            } else {
              // if dtype is same, transform inplace will not change the
              // original
              // value, transform inplace to avoid multiple copy
140 141
              SetTensorToVariable(
                  template_var->Var(), out, template_var->MutableVar());
142
            }
143
          }
144 145 146 147
        }
      }
    }
  }
148
  return tmp_ins_ptr;
149 150
}

J
Jiabin Yang 已提交
151 152
class PreparedOp {
 public:
153 154
  PreparedOp(const framework::OperatorBase& op,
             const framework::RuntimeContext& ctx,
155
             const phi::KernelKey& kernel_key,
156
             const framework::OperatorWithKernel::OpKernelFunc& func,
157 158
             const phi::ArgumentMappingFn* arg_map_fn,
             const phi::KernelSignature* default_kernel_signature,
159
             platform::DeviceContext* dev_ctx);
160

161 162
  PreparedOp(const framework::OperatorBase& op,
             const framework::RuntimeContext& ctx,
163
             const phi::KernelKey& kernel_key,
164 165 166
             const phi::ArgumentMappingFn* arg_map_fn,
             const phi::KernelSignature* default_kernel_signature,
             phi::KernelSignature&& kernel_signature,
167 168
             const phi::Kernel& phi_kernel,
             platform::DeviceContext* dev_ctx);
169

170 171 172 173
  static PreparedOp Prepare(const NameVarMap<VarBase>& ins,
                            const NameVarMap<VarBase>& outs,
                            const framework::OperatorWithKernel& op,
                            const platform::Place& place,
174
                            const framework::AttributeMap& attrs,
175
                            const framework::AttributeMap& default_attrs);
176 177 178 179 180

  static PreparedOp Prepare(const NameVarMap<VariableWrapper>& ins,
                            const NameVarMap<VariableWrapper>& outs,
                            const framework::OperatorWithKernel& op,
                            const platform::Place& place,
181
                            const framework::AttributeMap& attrs,
182
                            const framework::AttributeMap& default_attrs);
J
Jiabin Yang 已提交
183

184 185
  static PreparedOp Prepare(const NameVarMap<egr::EagerVariable>& ins,
                            const NameVarMap<egr::EagerVariable>& outs,
J
Jiabin Yang 已提交
186 187 188 189 190
                            const framework::OperatorWithKernel& op,
                            const platform::Place& place,
                            const framework::AttributeMap& attrs,
                            const framework::AttributeMap& default_attrs);

191 192
  void Run(const NameVarMap<VarBase>& in,
           const NameVarMap<VarBase>& out,
193 194
           const framework::AttributeMap& attrs,
           const framework::AttributeMap& default_attrs);
195 196 197

  void Run(const NameVarMap<VariableWrapper>& ins,
           const NameVarMap<VariableWrapper>& outs,
198 199
           const framework::AttributeMap& attrs,
           const framework::AttributeMap& default_attrs);
J
Jiabin Yang 已提交
200

201 202
  void Run(const NameVarMap<egr::EagerVariable>& ins,
           const NameVarMap<egr::EagerVariable>& outs,
J
Jiabin Yang 已提交
203 204 205
           const framework::AttributeMap& attrs,
           const framework::AttributeMap& default_attrs);

206 207 208
  const phi::KernelKey& kernel_key() const { return kernel_key_; }

  const phi::Place& place() const { return dev_ctx_->GetPlace(); }
209

J
Jiabin Yang 已提交
210 211 212
 private:
  const framework::OperatorBase& op_;
  const framework::RuntimeContext& ctx_;
213
  phi::KernelKey kernel_key_;
J
Jiabin Yang 已提交
214 215
  framework::OperatorWithKernel::OpKernelFunc func_;
  platform::DeviceContext* dev_ctx_;
216
  // NOTE(chenweihang): Similar op members are used to adapt to
217
  // new phi kernel, if there is a better design in the future,
218
  // we may polish the implementation here
219
  bool run_phi_kernel_{false};
L
Liu-xiandong 已提交
220
  bool run_kp_kernel_{false};
221 222 223 224
  const phi::ArgumentMappingFn* arg_map_fn_;
  const phi::KernelSignature* default_kernel_signature_;
  phi::KernelSignature kernel_signature_;
  const phi::Kernel& phi_kernel_;
225 226 227 228

  static const phi::KernelFactory& phi_kernel_factory;
  static const phi::OpUtilsMap& phi_op_utils_map;
  static const phi::DefaultKernelSignatureMap& default_phi_kernel_sig_map;
J
Jiabin Yang 已提交
229 230
};

231
const inline framework::Attribute* GetAttr(
232
    const framework::AttributeMap& attrs,
233 234
    const framework::AttributeMap& default_attrs,
    const std::string& name) {
235 236 237 238 239 240
  auto it = attrs.find(name);
  bool found = it != attrs.end();
  if (!found) {
    it = default_attrs.find(name);
    found = it != default_attrs.end();
  }
241 242 243 244
  if (found) {
    return &it->second;
  }
  return nullptr;
245 246 247
}

template <typename VarType>
248 249 250 251 252 253 254 255
void BuildDygraphPhiKernelContext(const phi::KernelSignature& kernel_signature,
                                  const phi::Kernel& phi_kernel,
                                  const NameVarMap<VarType>& ins,
                                  const NameVarMap<VarType>& outs,
                                  const framework::AttributeMap& attrs,
                                  const framework::AttributeMap& default_attrs,
                                  platform::DeviceContext* dev_ctx,
                                  phi::KernelContext* kernel_ctx) {
256 257
  kernel_ctx->SetDeviceContext(dev_ctx);

258 259 260
  const auto& input_names = kernel_signature.input_names;
  const auto& attr_names = kernel_signature.attr_names;
  const auto& output_names = kernel_signature.output_names;
261

262 263 264
  auto& input_defs = phi_kernel.args_def().input_defs();
  auto& output_defs = phi_kernel.args_def().output_defs();
  auto& attr_defs = phi_kernel.args_def().attribute_defs();
265

266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
  PADDLE_ENFORCE_EQ(
      input_names.size(),
      input_defs.size(),
      platform::errors::InvalidArgument(
          "Op %s: the size of inputs_args names (%d) must be equal to "
          "the size of kernel input_defs (%d).",
          kernel_signature.name,
          input_names.size(),
          input_defs.size()));

  PADDLE_ENFORCE_EQ(
      output_names.size(),
      output_defs.size(),
      platform::errors::InvalidArgument(
          "Op %s: the size of outputs_args names (%d) must be equal to "
          "the size of kernel output_defs (%d).",
          kernel_signature.name,
          output_names.size(),
          output_defs.size()));

  PADDLE_ENFORCE_EQ(
      attr_names.size(),
      attr_defs.size(),
      platform::errors::InvalidArgument(
          "Op %s: the size of attribute_args names (%d) must be equal "
          "to the size of kernel attribute_defs (%d).",
          kernel_signature.name,
          attr_names.size(),
          attr_defs.size()));
295 296

  for (size_t i = 0; i < input_names.size(); ++i) {
H
hong 已提交
297
    auto it = ins.find(input_names[i]);
298 299 300

    size_t start_idx = (i == 0 ? 0 : kernel_ctx->InputRangeAt(i - 1).second);

F
From00 已提交
301 302
    if (it == ins.end()) {
      if (LIKELY(input_defs[i].type_index ==
303
                 std::type_index(typeid(paddle::optional<phi::DenseTensor>)))) {
F
From00 已提交
304 305 306 307
        kernel_ctx->EmplaceBackInputWithoutSetRange(nullptr);
        auto end_idx = start_idx + 1;
        kernel_ctx->AssignInputRange(std::make_pair(start_idx, end_idx), i);
        continue;
308
      } else if (input_defs[i].type_index ==
309 310
                 std::type_index(typeid(
                     paddle::optional<std::vector<const phi::DenseTensor*>>))) {
311 312 313 314
        kernel_ctx->EmplaceBackInputWithoutSetRange(nullptr);
        auto end_idx = start_idx + 1;
        kernel_ctx->AssignInputRange(std::make_pair(start_idx, end_idx), i);
        continue;
F
From00 已提交
315 316 317 318 319
      } else {
        PADDLE_THROW(phi::errors::NotFound(
            "Can not find input variable '%s' for %s OP, please check whether "
            "the name setting in OpArgumentMapping is consistent with that in "
            "OpMaker.",
320 321
            input_names[i],
            kernel_signature.name));
F
From00 已提交
322
      }
323
    }
F
From00 已提交
324

325
    auto& ins_vector = it->second;
326 327 328
    size_t end_idx = start_idx + ins_vector.size();

    for (size_t offset = 0; offset < ins_vector.size(); ++offset) {
329
      const phi::TensorBase* tensor_in = nullptr;
330
      auto& var = ins_vector[offset]->Var();
331 332
      if (var.template IsType<phi::DenseTensor>()) {
        tensor_in = &(var.template Get<phi::DenseTensor>());
333
        kernel_ctx->EmplaceBackInputWithoutSetRange(tensor_in);
334 335
      } else if (var.template IsType<phi::SelectedRows>()) {
        tensor_in = &(var.template Get<phi::SelectedRows>());
336 337
        kernel_ctx->EmplaceBackInputWithoutSetRange(tensor_in);
      } else if (var.template IsType<framework::LoDTensorArray>()) {
338 339
        tensor_in = &(var.template Get<framework::LoDTensorArray>());
        kernel_ctx->EmplaceBackInputWithoutSetRange(tensor_in);
340 341 342 343
      } else {
        PADDLE_THROW(platform::errors::Unimplemented(
            "Unsupported input `%s` type when call pt kernel.",
            framework::ToTypeName(var.Type())));
344
      }
345
    }
346
    kernel_ctx->AssignInputRange(std::make_pair(start_idx, end_idx), i);
347
  }
348
  VLOG(6) << "BuildDygraphPhiKernelContext: Inputs parsing completed.";
349 350 351 352 353 354

  for (size_t i = 0; i < output_names.size(); ++i) {
    size_t start_idx = (i == 0 ? 0 : kernel_ctx->OutputRangeAt(i - 1).second);

    auto iter = outs.find(output_names[i]);
    if (iter == outs.end()) {
355
      kernel_ctx->EmplaceBackOutputWithoutSetRange(nullptr);
356 357 358 359 360 361 362 363 364 365
      kernel_ctx->AssignOutputRange(std::make_pair(start_idx, start_idx + 1),
                                    i);
      continue;
    }

    auto& outs_vector = iter->second;
    size_t end_idx = start_idx + outs_vector.size();

    for (size_t offset = 0; offset < outs_vector.size(); ++offset) {
      if (outs_vector[offset] == nullptr) {
366
        kernel_ctx->EmplaceBackOutputWithoutSetRange(nullptr);
367 368
        continue;
      }
369

370
      phi::TensorBase* tensor_out = nullptr;
371
      auto* var = outs_vector[offset]->MutableVar();
372 373 374
      if (var) {
        if (var->template IsType<phi::DenseTensor>()) {
          tensor_out = var->template GetMutable<phi::DenseTensor>();
375
          kernel_ctx->EmplaceBackOutputWithoutSetRange(tensor_out);
376 377
        } else if (var->template IsType<phi::SelectedRows>()) {
          tensor_out = var->template GetMutable<phi::SelectedRows>();
378 379
          kernel_ctx->EmplaceBackOutputWithoutSetRange(tensor_out);
        } else if (var->template IsType<framework::LoDTensorArray>()) {
380 381
          tensor_out = var->template GetMutable<framework::LoDTensorArray>();
          kernel_ctx->EmplaceBackOutputWithoutSetRange(tensor_out);
382 383 384 385 386
        } else {
          PADDLE_THROW(platform::errors::Unimplemented(
              "Unsupported output `%s` type when call pt kernel.",
              framework::ToTypeName(var->Type())));
        }
387 388
      } else {
        kernel_ctx->EmplaceBackOutputWithoutSetRange(tensor_out);
389
      }
390 391 392
    }
    kernel_ctx->AssignOutputRange(std::make_pair(start_idx, end_idx), i);
  }
393
  VLOG(6) << "BuildDygraphPhiKernelContext: Outputs parsing completed.";
394 395

  for (size_t i = 0; i < attr_names.size(); ++i) {
396 397 398 399 400 401 402 403 404 405 406
    VLOG(6) << "BuildDygraphPhiKernelContext: " << attr_names[i] << ": "
            << attr_defs[i].type_index;
    auto* attr_ptr = GetAttr(attrs, default_attrs, attr_names[i]);
    switch (attr_defs[i].type_index) {
      case phi::AttributeType::SCALAR:
        if (attr_ptr) {
          // scalar is in the attribute
          auto& attr = *attr_ptr;
          switch (AttrTypeID(attr)) {
            case framework::proto::AttrType::FLOAT:
              kernel_ctx->EmplaceBackAttr(
R
Ruibiao Chen 已提交
407
                  std::move(phi::Scalar(PADDLE_GET_CONST(float, attr))));
408
              break;
409 410 411 412
            case framework::proto::AttrType::FLOAT64:
              kernel_ctx->EmplaceBackAttr(
                  std::move(phi::Scalar(PADDLE_GET_CONST(double, attr))));
              break;
413 414
            case framework::proto::AttrType::INT:
              kernel_ctx->EmplaceBackAttr(
R
Ruibiao Chen 已提交
415
                  std::move(phi::Scalar(PADDLE_GET_CONST(int, attr))));
416
              break;
417 418 419 420
            case framework::proto::AttrType::LONG:
              kernel_ctx->EmplaceBackAttr(
                  std::move(phi::Scalar(PADDLE_GET_CONST(int64_t, attr))));
              break;
421 422
            case framework::proto::AttrType::STRING:
              kernel_ctx->EmplaceBackAttr(
R
Ruibiao Chen 已提交
423
                  std::move(phi::Scalar(PADDLE_GET_CONST(std::string, attr))));
424
              break;
425 426 427 428
            case framework::proto::AttrType::BOOLEAN:
              kernel_ctx->EmplaceBackAttr(
                  std::move(phi::Scalar(PADDLE_GET_CONST(bool, attr))));
              break;
429 430 431 432 433 434 435 436
            default:
              PADDLE_THROW(platform::errors::Unimplemented(
                  "Unsupported cast op attribute `%s` to Scalar when construct "
                  "KernelContext in dygraph.",
                  attr_names[i]));
          }
        } else {  // scalar is in the input
          auto& ins_vector = ins.at(attr_names[i]);
437 438
          kernel_ctx->EmplaceBackAttr(
              std::move(framework::MakePhiScalarFromVar(ins_vector[0]->Var())));
439
        }
440 441 442 443 444 445 446
        break;
      case phi::AttributeType::INT_ARRAY:
        if (attr_ptr) {
          auto& attr = *attr_ptr;
          switch (AttrTypeID(attr)) {
            case framework::proto::AttrType::INTS:
              kernel_ctx->EmplaceBackAttr(std::move(
R
Ruibiao Chen 已提交
447
                  phi::IntArray(PADDLE_GET_CONST(std::vector<int32_t>, attr))));
448 449 450
              break;
            case framework::proto::AttrType::LONGS:
              kernel_ctx->EmplaceBackAttr(std::move(
R
Ruibiao Chen 已提交
451
                  phi::IntArray(PADDLE_GET_CONST(std::vector<int64_t>, attr))));
452 453
              break;
            case framework::proto::AttrType::INT:
R
Ruibiao Chen 已提交
454 455
              kernel_ctx->EmplaceBackAttr(std::move(
                  phi::IntArray(&PADDLE_GET_CONST(int32_t, attr), 1)));
456 457
              break;
            case framework::proto::AttrType::LONG:
R
Ruibiao Chen 已提交
458 459
              kernel_ctx->EmplaceBackAttr(std::move(
                  phi::IntArray(&PADDLE_GET_CONST(int64_t, attr), 1)));
460 461 462 463 464 465 466 467 468 469 470
              break;
            default:
              PADDLE_THROW(platform::errors::Unimplemented(
                  "Unsupported cast op attribute `%s` to IntArray when "
                  "construct KernelContext.",
                  attr_names[i]));
          }
        } else {  // shape is in the input
          auto& ins_vector = ins.at(attr_names[i]);
          if (ins_vector.size() == 1) {  // ShapeTensor
            kernel_ctx->EmplaceBackAttr(std::move(
471
                framework::MakePhiIntArrayFromVar(ins_vector[0]->Var())));
472 473 474 475 476 477 478
          } else {  // ShapeTensorList
            std::vector<framework::Variable*> variables;
            variables.reserve(ins_vector.size());
            for (const auto& var_base : ins_vector) {
              variables.push_back(var_base->MutableVar());
            }
            kernel_ctx->EmplaceBackAttr(
479
                std::move(framework::MakePhiIntArrayFromVarList(variables)));
480
          }
481
        }
482 483 484 485 486 487 488 489 490 491
        break;
      case phi::AttributeType::SCALARS: {
        PADDLE_ENFORCE_NOT_NULL(
            attr_ptr,
            platform::errors::NotFound("(%s) is not found in AttributeMap when "
                                       "buildind dygraph KernelContext.",
                                       attr_names[i]));
        auto& attr = *attr_ptr;
        switch (AttrTypeID(attr)) {
          case framework::proto::AttrType::INTS: {
R
Ruibiao Chen 已提交
492
            const auto& vec = PADDLE_GET_CONST(std::vector<int32_t>, attr);
493 494 495 496 497 498 499 500
            std::vector<phi::Scalar> scalar_list;
            scalar_list.reserve(vec.size());
            for (const auto& val : vec) {
              scalar_list.emplace_back(val);
            }
            kernel_ctx->EmplaceBackAttr(std::move(scalar_list));
          } break;
          case framework::proto::AttrType::LONGS: {
R
Ruibiao Chen 已提交
501
            const auto& vec = PADDLE_GET_CONST(std::vector<int64_t>, attr);
502 503 504 505 506 507 508 509
            std::vector<phi::Scalar> scalar_list;
            scalar_list.reserve(vec.size());
            for (const auto& val : vec) {
              scalar_list.emplace_back(val);
            }
            kernel_ctx->EmplaceBackAttr(std::move(scalar_list));
          } break;
          case framework::proto::AttrType::FLOATS: {
R
Ruibiao Chen 已提交
510
            const auto& vec = PADDLE_GET_CONST(std::vector<float>, attr);
511 512 513 514 515 516 517 518
            std::vector<phi::Scalar> scalar_list;
            scalar_list.reserve(vec.size());
            for (const auto& val : vec) {
              scalar_list.emplace_back(val);
            }
            kernel_ctx->EmplaceBackAttr(std::move(scalar_list));
          } break;
          case framework::proto::AttrType::FLOAT64S: {
R
Ruibiao Chen 已提交
519
            const auto& vec = PADDLE_GET_CONST(std::vector<double>, attr);
520 521 522 523 524 525 526 527
            std::vector<phi::Scalar> scalar_list;
            scalar_list.reserve(vec.size());
            for (const auto& val : vec) {
              scalar_list.emplace_back(val);
            }
            kernel_ctx->EmplaceBackAttr(std::move(scalar_list));
          } break;
          case framework::proto::AttrType::BOOLEANS: {
R
Ruibiao Chen 已提交
528
            const auto& vec = PADDLE_GET_CONST(std::vector<bool>, attr);
529 530 531 532 533 534 535 536 537 538 539 540
            std::vector<phi::Scalar> scalar_list;
            scalar_list.reserve(vec.size());
            for (const auto& val : vec) {
              scalar_list.emplace_back(val);
            }
            kernel_ctx->EmplaceBackAttr(std::move(scalar_list));
          } break;
          default:
            PADDLE_THROW(platform::errors::Unimplemented(
                "Unsupported cast op attribute `%s` to vector<Scalar> when "
                "construct KernelContext.",
                attr_names[i]));
541
        }
542 543 544 545 546 547 548 549 550 551
      } break;
      default: {
        PADDLE_ENFORCE_NOT_NULL(
            attr_ptr,
            platform::errors::NotFound("(%s) is not found in AttributeMap when "
                                       "buildind dygraph KernelContext.",
                                       attr_names[i]));
        auto& attr = *attr_ptr;
        switch (attr_defs[i].type_index) {
          case phi::AttributeType::FLOAT32:
R
Ruibiao Chen 已提交
552
            kernel_ctx->EmplaceBackAttr(PADDLE_GET_CONST(float, attr));
553
            break;
554 555 556
          case phi::AttributeType::FLOAT64:
            kernel_ctx->EmplaceBackAttr(PADDLE_GET_CONST(double, attr));
            break;
557
          case phi::AttributeType::INT32:
R
Ruibiao Chen 已提交
558
            kernel_ctx->EmplaceBackAttr(PADDLE_GET_CONST(int, attr));
559 560
            break;
          case phi::AttributeType::BOOL:
R
Ruibiao Chen 已提交
561
            kernel_ctx->EmplaceBackAttr(PADDLE_GET_CONST(bool, attr));
562 563
            break;
          case phi::AttributeType::INT64:
R
Ruibiao Chen 已提交
564
            kernel_ctx->EmplaceBackAttr(PADDLE_GET_CONST(int64_t, attr));
565 566 567
            break;
          case phi::AttributeType::INT32S:
            kernel_ctx->EmplaceBackAttr(
R
Ruibiao Chen 已提交
568
                PADDLE_GET_CONST(std::vector<int>, attr));
569 570 571 572
            break;
          case phi::AttributeType::DATA_TYPE: {
            auto data_type = framework::TransToPhiDataType(
                static_cast<framework::proto::VarType::Type>(
R
Ruibiao Chen 已提交
573
                    PADDLE_GET_CONST(int, attr)));
574 575 576 577
            kernel_ctx->EmplaceBackAttr(data_type);
          } break;
          case phi::AttributeType::STRING:
            kernel_ctx->EmplaceBackAttr(
R
Ruibiao Chen 已提交
578
                std::move(PADDLE_GET_CONST(std::string, attr)));
579 580 581 582 583
            break;
          case phi::AttributeType::INT64S: {
            switch (AttrTypeID(attr)) {
              case framework::proto::AttrType::LONGS:
                kernel_ctx->EmplaceBackAttr(
R
Ruibiao Chen 已提交
584
                    PADDLE_GET_CONST(std::vector<int64_t>, attr));
585 586 587
                break;
              case framework::proto::AttrType::INTS: {
                const auto& vector_int_attr =
R
Ruibiao Chen 已提交
588
                    PADDLE_GET_CONST(std::vector<int>, attr);
589 590 591 592 593 594 595 596 597 598 599 600 601 602
                const std::vector<int64_t> vector_int64_attr(
                    vector_int_attr.begin(), vector_int_attr.end());
                kernel_ctx->EmplaceBackAttr(vector_int64_attr);
              } break;
              default:
                PADDLE_THROW(platform::errors::Unimplemented(
                    "Unsupported cast op attribute `%s` to vector<int64_t> "
                    "when "
                    "construct KernelContext.",
                    attr_names[i]));
            }
          } break;
          case phi::AttributeType::FLOAT32S:
            kernel_ctx->EmplaceBackAttr(
R
Ruibiao Chen 已提交
603
                PADDLE_GET_CONST(std::vector<float>, attr));
604 605 606
            break;
          case phi::AttributeType::STRINGS:
            kernel_ctx->EmplaceBackAttr(
R
Ruibiao Chen 已提交
607
                PADDLE_GET_CONST(std::vector<std::string>, attr));
608 609 610 611 612 613
            break;
          default:
            PADDLE_THROW(platform::errors::Unimplemented(
                "Unsupported cast op attribute `%s` when construct "
                "KernelContext in dygraph.",
                attr_names[i]));
614 615 616 617
        }
      }
    }
  }
618
  VLOG(6) << "BuildDygraphPhiKernelContext: Attributes parsing completed.";
619 620 621
}

template <typename VarType>
622 623
void PreparePhiData(const phi::Kernel& phi_kernel,
                    const phi::KernelSignature& kernel_signature,
624
                    const NameVarMap<VarType>& ins) {
625 626
  const auto& input_names = kernel_signature.input_names;
  auto& input_defs = phi_kernel.args_def().input_defs();
627

628 629
  PADDLE_ENFORCE_EQ(input_names.size(),
                    input_defs.size(),
630 631 632
                    platform::errors::InvalidArgument(
                        "the size of inputs_args names (%d) must be equal to "
                        "the size of kernel input_defs (%d).",
633 634
                        input_names.size(),
                        input_defs.size()));
635 636 637

  for (size_t i = 0; i < input_names.size(); ++i) {
    auto& in_def = input_defs.at(i);
638 639
    auto iter = ins.find(input_names[i]);
    if (iter == ins.end()) {
H
hong 已提交
640 641
      continue;
    }
642
    auto& ins_vector = iter->second;
643 644

    for (size_t offset = 0; offset < ins_vector.size(); ++offset) {
645
      auto& var = ins_vector[offset];
J
Jiabin Yang 已提交
646
      const auto* tensor_in = GetTensorFromVar(var->Var());
647 648
      if (tensor_in && tensor_in->IsInitialized() &&
          (tensor_in->memory_size() != 0)) {
649 650 651
        if (in_def.backend == phi::Backend::ALL_BACKEND) {
          continue;
        }
652 653 654 655
        auto tensor_backend = phi::TransToPhiBackend(tensor_in->place());
        if (in_def.backend == tensor_backend ||
            (in_def.backend == phi::Backend::GPUDNN &&
             tensor_backend == phi::Backend::GPU)) {
656 657 658
          continue;
        }

659 660
        auto expected_place = phi::TransToPhiPlace(in_def.backend);

661
        VLOG(3) << "Phi Transform Variable " << input_names[i] << " from "
662 663
                << tensor_in->place() << " to " << expected_place;

664
        phi::DenseTensor tmp_tensor;
665 666
        framework::TensorCopySync(*tensor_in, expected_place, &tmp_tensor);

J
Jiabin Yang 已提交
667
        SetTensorToVariable(var->Var(), tmp_tensor, var->MutableVar());
668 669 670 671 672
      }
    }
  }
}

J
Jiabin Yang 已提交
673 674
}  // namespace imperative
}  // namespace paddle