eager_utils.cc 65.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
/* 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. */

12
#include "paddle/fluid/pybind/eager_utils.h"
13
#include <Python.h>
14
#include "paddle/ir/core/value.h"
15 16 17 18
// Avoid a problem with copysign defined in pyconfig.h on Windows.
#ifdef copysign
#undef copysign
#endif
19 20 21 22 23 24

#include <string>
#include <vector>

#include "paddle/fluid/eager/api/all.h"
#include "paddle/fluid/eager/autograd_meta.h"
25
#include "paddle/fluid/eager/hooks.h"
J
Jiabin Yang 已提交
26
#include "paddle/fluid/framework/convert_utils.h"
0
0x45f 已提交
27
#include "paddle/fluid/framework/scope.h"
J
Jiabin Yang 已提交
28
#include "paddle/fluid/framework/scope_guard.h"
29
#include "paddle/fluid/jit/function.h"
30
#include "paddle/fluid/memory/allocation/allocator.h"
31
#include "paddle/fluid/operators/py_func_op.h"
J
Jiabin Yang 已提交
32
#include "paddle/fluid/operators/utils.h"
33 34
#include "paddle/fluid/platform/enforce.h"
#include "paddle/fluid/pybind/eager.h"
35
#include "paddle/fluid/pybind/op_function_common.h"
36
#include "paddle/fluid/pybind/tensor_py.h"
37
#include "paddle/phi/api/ext/op_meta_info.h"
38 39 40
#include "paddle/phi/common/data_type.h"
#include "paddle/phi/core/compat/convert_utils.h"
#include "paddle/phi/core/dense_tensor.h"
41 42 43
#include "paddle/phi/core/flags.h"

PHI_DECLARE_bool(check_nan_inf);
44
PHI_DECLARE_int32(check_nan_inf_level);
45 46 47
namespace paddle {
namespace pybind {

48
extern PyTypeObject* p_tensor_type;
J
Jack Zhou 已提交
49
extern PyTypeObject* p_string_tensor_type;
50

0
0x45f 已提交
51
extern PyTypeObject* g_framework_scope_pytype;
52
extern PyTypeObject* g_ir_opresult_pytype;
J
Jiabin Yang 已提交
53
extern PyTypeObject* g_vartype_pytype;
54
extern PyTypeObject* g_data_type_pytype;
55 56 57 58 59
extern PyTypeObject* g_place_pytype;
extern PyTypeObject* g_cudaplace_pytype;
extern PyTypeObject* g_cpuplace_pytype;
extern PyTypeObject* g_xpuplace_pytype;
extern PyTypeObject* g_cudapinnedplace_pytype;
60
extern PyTypeObject* g_customplace_pytype;
61
extern PyTypeObject* g_framework_tensor_pytype;
62
extern PyTypeObject* g_framework_lodtensorarray_pytype;
63
extern PyTypeObject* g_jit_function_pytype;
L
LiYuRio 已提交
64
extern PyTypeObject* g_tensor_dist_attr_pytype;
65

66
int TensorDtype2NumpyDtype(phi::DataType dtype) {
67
  switch (dtype) {
68
    case phi::DataType::BOOL:
69
      return pybind11::detail::npy_api::NPY_BOOL_;
70
    case phi::DataType::INT8:
71
      return pybind11::detail::npy_api::NPY_INT8_;
72
    case phi::DataType::UINT8:
73
      return pybind11::detail::npy_api::NPY_UINT8_;
74
    case phi::DataType::INT16:
75
      return pybind11::detail::npy_api::NPY_INT16_;
76
    case phi::DataType::INT32:
77
      return pybind11::detail::npy_api::NPY_INT32_;
78
    case phi::DataType::INT64:
79
      return pybind11::detail::npy_api::NPY_INT64_;
H
hong 已提交
80 81
    case phi::DataType::BFLOAT16:
      return pybind11::detail::NPY_UINT16_;
82
    case phi::DataType::FLOAT16:
83
      return pybind11::detail::NPY_FLOAT16_;
84
    case phi::DataType::FLOAT32:
85
      return pybind11::detail::npy_api::NPY_FLOAT_;
86
    case phi::DataType::FLOAT64:
87
      return pybind11::detail::npy_api::NPY_DOUBLE_;
88
    case phi::DataType::COMPLEX64:
89
      return pybind11::detail::NPY_COMPLEX64;
90
    case phi::DataType::COMPLEX128:
91
      return pybind11::detail::NPY_COMPLEX128;
J
Jack Zhou 已提交
92 93
    case phi::DataType::PSTRING:
      return pybind11::detail::npy_api::NPY_UNICODE_;
94 95
    default:
      PADDLE_THROW(paddle::platform::errors::InvalidArgument(
96
          "Unknow phi::DataType, the int value = %d.",
97 98 99 100 101
          static_cast<int>(dtype)));
      return 0;
  }
}

102
bool PyObject_CheckLongOrConvertToLong(PyObject** obj) {
103
  if (PyLong_Check(*obj) && !PyBool_Check(*obj)) {
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
    return true;
  }

  if (std::string((reinterpret_cast<PyTypeObject*>((*obj)->ob_type))->tp_name)
          .find("numpy") != std::string::npos) {
    auto to = PyNumber_Long(*obj);
    if (to) {
      *obj = to;
      return true;
    }
  }

  return false;
}

bool PyObject_CheckFloatOrConvertToFloat(PyObject** obj) {
  // sometimes users provide PyLong or numpy.int64 but attr is float
  if (PyFloat_Check(*obj) || PyLong_Check(*obj)) {
    return true;
  }
  if (std::string((reinterpret_cast<PyTypeObject*>((*obj)->ob_type))->tp_name)
          .find("numpy") != std::string::npos) {
    auto to = PyNumber_Float(*obj);
    if (to) {
      *obj = to;
      return true;
    }
  }
  return false;
}

bool PyObject_CheckStr(PyObject* obj) { return PyUnicode_Check(obj); }

137 138 139 140
bool PyObject_CheckIROpResult(PyObject* obj) {
  return PyObject_TypeCheck(obj, g_ir_opresult_pytype);
}

141 142 143
bool CastPyArg2AttrBoolean(PyObject* obj, ssize_t arg_pos) {
  if (obj == Py_None) {
    return false;  // To be compatible with QA integration testing. Some
144
                   // test cases pass in None.
145 146 147 148 149 150 151 152
  } else if (obj == Py_True) {
    return true;
  } else if (obj == Py_False) {
    return false;
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "argument (position %d) must be "
        "bool, but got %s",
153 154
        arg_pos + 1,
        (reinterpret_cast<PyTypeObject*>(obj->ob_type))->tp_name));
155 156 157 158 159 160 161 162 163 164
  }
}

int CastPyArg2AttrInt(PyObject* obj, ssize_t arg_pos) {
  if (PyObject_CheckLongOrConvertToLong(&obj)) {
    return static_cast<int>(PyLong_AsLong(obj));
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "argument (position %d) must be "
        "int, but got %s",
165 166
        arg_pos + 1,
        (reinterpret_cast<PyTypeObject*>(obj->ob_type))->tp_name));
167 168 169 170 171 172 173 174 175 176
  }
}

int64_t CastPyArg2AttrLong(PyObject* obj, ssize_t arg_pos) {
  if (PyObject_CheckLongOrConvertToLong(&obj)) {
    return (int64_t)PyLong_AsLong(obj);  // NOLINT
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "argument (position %d) must be "
        "long, but got %s",
177 178
        arg_pos + 1,
        (reinterpret_cast<PyTypeObject*>(obj->ob_type))->tp_name));
179 180 181
  }
}

W
wanghuancoder 已提交
182 183 184 185 186 187 188
size_t CastPyArg2AttrSize_t(PyObject* obj, ssize_t arg_pos) {
  if (PyObject_CheckLongOrConvertToLong(&obj)) {
    return PyLong_AsSize_t(obj);
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "argument (position %d) must be "
        "long, but got %s",
189 190
        arg_pos + 1,
        (reinterpret_cast<PyTypeObject*>(obj->ob_type))->tp_name));
W
wanghuancoder 已提交
191 192 193
  }
}

194 195 196 197 198 199 200
float CastPyArg2AttrFloat(PyObject* obj, ssize_t arg_pos) {
  if (PyObject_CheckFloatOrConvertToFloat(&obj)) {
    return static_cast<float>(PyFloat_AsDouble(obj));
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "argument (position %d) must be "
        "float, but got %s",
201 202
        arg_pos + 1,
        (reinterpret_cast<PyTypeObject*>(obj->ob_type))->tp_name));
203 204 205 206 207 208 209 210 211 212 213 214 215
  }
}

std::string CastPyArg2AttrString(PyObject* obj, ssize_t arg_pos) {
  if (PyObject_CheckStr(obj)) {
    Py_ssize_t size;
    const char* data;
    data = PyUnicode_AsUTF8AndSize(obj, &size);
    return std::string(data, static_cast<size_t>(size));
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "argument (position %d) must be "
        "str, but got %s",
216 217
        arg_pos + 1,
        (reinterpret_cast<PyTypeObject*>(obj->ob_type))->tp_name));
218 219 220 221
    return "";
  }
}

J
Jiabin Yang 已提交
222 223 224 225 226
std::shared_ptr<imperative::VarBase> CastPyArg2VarBase(PyObject* obj,
                                                       ssize_t arg_pos) {
  return py::cast<std::shared_ptr<imperative::VarBase>>(obj);
}

227
void SetPythonStack() {
228
  if (FLAGS_check_nan_inf && FLAGS_check_nan_inf_level == 0) {
229
    VLOG(4) << "this is SetPythonStack";
230 231 232 233 234 235 236 237 238 239 240 241 242
    pybind11::gil_scoped_acquire gil;
    PyObject* mod = PyImport_ImportModule("traceback");
    PyObject* traceback_list = PyObject_CallMethod(mod, "format_stack", "");
    std::string str = "";
    for (Py_ssize_t i = 0; i < PyList_Size(traceback_list); i++) {
      PyObject* line = PyList_GetItem(traceback_list, i);
      str += py::str(PyUnicode_AsUTF8(line));
    }
    std::string last = str + egr::Controller::Instance().GetPythonStack();
    egr::Controller::Instance().SetPythonStack(last);
  }
}

243 244
std::shared_ptr<jit::Function> CastPyArg2JitFunction(PyObject* obj,
                                                     ssize_t arg_pos) {
245
  if (PyObject_TypeCheck(obj, g_jit_function_pytype)) {
246
    return ::pybind11::handle(obj).cast<std::shared_ptr<jit::Function>>();
247 248 249
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "argument (position %d) must be "
250
        "BaseEngine, but got %s",
251 252 253 254 255
        arg_pos + 1,
        reinterpret_cast<PyTypeObject*>(obj->ob_type)->tp_name));
  }
}

256 257 258
std::vector<paddle::Tensor> CastPyArg2VectorOfTensor(PyObject* obj,
                                                     ssize_t arg_pos) {
  std::vector<paddle::Tensor> result;
259 260 261 262 263
  if (PyList_Check(obj)) {
    Py_ssize_t len = PyList_Size(obj);
    PyObject* item = nullptr;
    for (Py_ssize_t i = 0; i < len; i++) {
      item = PyList_GetItem(obj, i);
264
      if (PyObject_TypeCheck(item, p_tensor_type)) {
265
        result.emplace_back(reinterpret_cast<TensorObject*>(item)->tensor);
266 267 268
      } else if (item == Py_None) {
        // emplace empty Tensor for None
        result.emplace_back();
269 270 271
      } else {
        PADDLE_THROW(platform::errors::InvalidArgument(
            "argument (position %d) must be "
272
            "list of Tensor, but got %s at pos %d",
273
            arg_pos + 1,
274 275
            reinterpret_cast<PyTypeObject*>(item->ob_type)->tp_name,
            i));
276 277 278 279 280 281 282
      }
    }
  } else if (PyTuple_Check(obj)) {
    Py_ssize_t len = PyTuple_Size(obj);
    PyObject* item = nullptr;
    for (Py_ssize_t i = 0; i < len; i++) {
      item = PyTuple_GetItem(obj, i);
283
      if (PyObject_TypeCheck(item, p_tensor_type)) {
284
        result.emplace_back(reinterpret_cast<TensorObject*>(item)->tensor);
285 286 287
      } else if (item == Py_None) {
        // emplace empty Tensor for None
        result.emplace_back();
288 289 290
      } else {
        PADDLE_THROW(platform::errors::InvalidArgument(
            "argument (position %d) must be "
291
            "list of Tensor, but got %s at pos %d",
292
            arg_pos + 1,
293 294
            reinterpret_cast<PyTypeObject*>(item->ob_type)->tp_name,
            i));
295 296
      }
    }
297 298
  } else if (obj == Py_None) {
    return {};
299
  } else if (PyObject_TypeCheck(obj, p_tensor_type)) {
300
    return {reinterpret_cast<TensorObject*>(obj)->tensor};
301 302 303 304
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "argument (position %d) must be "
        "list or tuple, but got %s",
305 306
        arg_pos + 1,
        reinterpret_cast<PyTypeObject*>(obj->ob_type)->tp_name));
307 308 309 310 311 312 313 314 315 316
  }
  return result;
}

std::vector<int> CastPyArg2VectorOfInt(PyObject* obj, size_t arg_pos) {
  std::vector<int> result;
  if (PyList_Check(obj)) {
    Py_ssize_t len = PyList_Size(obj);
    PyObject* item = nullptr;
    for (Py_ssize_t i = 0; i < len; i++) {
317
      item = PyList_GET_ITEM(obj, i);
318 319 320 321 322 323 324
      if (PyObject_CheckLongOrConvertToLong(&item)) {
        result.emplace_back(static_cast<int>(PyLong_AsLong(item)));
      } else {
        PADDLE_THROW(platform::errors::InvalidArgument(
            "argument (position %d) must be "
            "list of int, but got %s at pos %d",
            arg_pos + 1,
325 326
            reinterpret_cast<PyTypeObject*>(item->ob_type)->tp_name,
            i));
327 328 329 330 331 332
      }
    }
  } else if (PyTuple_Check(obj)) {
    Py_ssize_t len = PyTuple_Size(obj);
    PyObject* item = nullptr;
    for (Py_ssize_t i = 0; i < len; i++) {
333
      item = PyTuple_GET_ITEM(obj, i);
334 335
      if (PyObject_CheckLongOrConvertToLong(&item)) {
        result.emplace_back(static_cast<int>(PyLong_AsLong(item)));
336 337 338
      } else {
        PADDLE_THROW(platform::errors::InvalidArgument(
            "argument (position %d) must be "
339
            "list of int, but got %s at pos %d",
340
            arg_pos + 1,
341 342
            reinterpret_cast<PyTypeObject*>(item->ob_type)->tp_name,
            i));
343 344
      }
    }
345 346
  } else if (obj == Py_None) {
    return {};
347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
  } else if (PyObject_CheckLongOrConvertToLong(&obj)) {
    return {static_cast<int>(PyLong_AsLong(obj))};
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "argument (position %d) must be "
        "list or tuple, but got %s",
        arg_pos + 1,
        reinterpret_cast<PyTypeObject*>(obj->ob_type)->tp_name));
  }
  return result;
}

std::vector<int64_t> CastPyArg2VectorOfInt64(PyObject* obj, size_t arg_pos) {
  std::vector<int64_t> result;
  if (PyList_Check(obj)) {
    Py_ssize_t len = PyList_Size(obj);
    PyObject* item = nullptr;
    for (Py_ssize_t i = 0; i < len; i++) {
      item = PyList_GET_ITEM(obj, i);
      if (PyObject_CheckLongOrConvertToLong(&item)) {
        result.emplace_back(static_cast<int64_t>(PyLong_AsLong(item)));
      } else {
        PADDLE_THROW(platform::errors::InvalidArgument(
            "argument (position %d) must be "
            "list of int, but got %s at pos %d",
            arg_pos + 1,
            reinterpret_cast<PyTypeObject*>(item->ob_type)->tp_name,
            i));
      }
    }
  } else if (PyTuple_Check(obj)) {
    Py_ssize_t len = PyTuple_Size(obj);
    PyObject* item = nullptr;
    for (Py_ssize_t i = 0; i < len; i++) {
      item = PyTuple_GET_ITEM(obj, i);
      if (PyObject_CheckLongOrConvertToLong(&item)) {
        result.emplace_back(static_cast<int64_t>(PyLong_AsLong(item)));
      } else {
        PADDLE_THROW(platform::errors::InvalidArgument(
            "argument (position %d) must be "
            "list of int, but got %s at pos %d",
            arg_pos + 1,
            reinterpret_cast<PyTypeObject*>(item->ob_type)->tp_name,
            i));
      }
    }
  } else if (obj == Py_None) {
    return {};
  } else if (PyObject_CheckLongOrConvertToLong(&obj)) {
    return {static_cast<int64_t>(PyLong_AsLong(obj))};
397 398 399 400
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "argument (position %d) must be "
        "list or tuple, but got %s",
401 402
        arg_pos + 1,
        reinterpret_cast<PyTypeObject*>(obj->ob_type)->tp_name));
403 404 405 406
  }
  return result;
}

W
wanghuancoder 已提交
407 408 409 410 411 412 413 414 415 416 417 418 419 420
std::vector<size_t> CastPyArg2VectorOfSize_t(PyObject* obj, size_t arg_pos) {
  std::vector<size_t> result;
  if (PyList_Check(obj)) {
    Py_ssize_t len = PyList_Size(obj);
    PyObject* item = nullptr;
    for (Py_ssize_t i = 0; i < len; i++) {
      item = PyList_GetItem(obj, i);
      if (PyObject_CheckLongOrConvertToLong(&item)) {
        result.emplace_back(PyLong_AsSize_t(item));
      } else {
        PADDLE_THROW(platform::errors::InvalidArgument(
            "argument (position %d) must be "
            "list of int, but got %s at pos %d",
            arg_pos + 1,
421 422
            reinterpret_cast<PyTypeObject*>(item->ob_type)->tp_name,
            i));
W
wanghuancoder 已提交
423 424
      }
    }
425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
  } else if (PyTuple_Check(obj)) {
    Py_ssize_t len = PyTuple_Size(obj);
    PyObject* item = nullptr;
    for (Py_ssize_t i = 0; i < len; i++) {
      item = PyTuple_GET_ITEM(obj, i);
      if (PyObject_CheckLongOrConvertToLong(&item)) {
        result.emplace_back(PyLong_AsSize_t(item));
      } else {
        PADDLE_THROW(platform::errors::InvalidArgument(
            "argument (position %d) must be "
            "list of size_t, but got %s at pos %d",
            arg_pos + 1,
            reinterpret_cast<PyTypeObject*>(item->ob_type)->tp_name,
            i));
      }
    }
  } else if (obj == Py_None) {
    return {};
  } else if (PyObject_CheckLongOrConvertToLong(&obj)) {
    return {PyLong_AsSize_t(obj)};
W
wanghuancoder 已提交
445 446 447
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "argument (position %d) must be "
448
        "list of size_t, but got %s",
449 450
        arg_pos + 1,
        reinterpret_cast<PyTypeObject*>(obj->ob_type)->tp_name));
W
wanghuancoder 已提交
451 452 453 454
  }
  return result;
}

455 456 457 458 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 489 490 491 492 493 494 495 496 497 498 499 500 501 502
std::vector<float> CastPyArg2VectorOfFloat(PyObject* obj, size_t arg_pos) {
  std::vector<float> result;
  if (PyList_Check(obj)) {
    Py_ssize_t len = PyList_Size(obj);
    PyObject* item = nullptr;
    for (Py_ssize_t i = 0; i < len; i++) {
      item = PyList_GetItem(obj, i);
      if (PyObject_CheckFloatOrConvertToFloat(&item)) {
        result.emplace_back(static_cast<float>(PyFloat_AsDouble(item)));
      } else {
        PADDLE_THROW(platform::errors::InvalidArgument(
            "argument (position %d) must be "
            "list of float, but got %s at pos %d",
            arg_pos + 1,
            reinterpret_cast<PyTypeObject*>(item->ob_type)->tp_name,
            i));
      }
    }
  } else if (PyTuple_Check(obj)) {
    Py_ssize_t len = PyTuple_Size(obj);
    PyObject* item = nullptr;
    for (Py_ssize_t i = 0; i < len; i++) {
      item = PyTuple_GET_ITEM(obj, i);
      if (PyObject_CheckFloatOrConvertToFloat(&item)) {
        result.emplace_back(static_cast<float>(PyFloat_AsDouble(item)));
      } else {
        PADDLE_THROW(platform::errors::InvalidArgument(
            "argument (position %d) must be "
            "list of float, but got %s at pos %d",
            arg_pos + 1,
            reinterpret_cast<PyTypeObject*>(item->ob_type)->tp_name,
            i));
      }
    }
  } else if (obj == Py_None) {
    return {};
  } else if (PyObject_CheckFloatOrConvertToFloat(&obj)) {
    return {static_cast<float>(PyFloat_AsDouble(obj))};
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "argument (position %d) must be "
        "list of float, but got %s",
        arg_pos + 1,
        reinterpret_cast<PyTypeObject*>(obj->ob_type)->tp_name));
  }
  return result;
}

W
wanghuancoder 已提交
503 504 505 506 507 508 509 510 511 512 513 514 515 516
std::vector<std::vector<size_t>> CastPyArg2VectorOfVectorOfSize_t(
    PyObject* obj, size_t arg_pos) {
  std::vector<std::vector<size_t>> result;
  if (PyList_Check(obj)) {
    Py_ssize_t len = PyList_Size(obj);
    PyObject* item = nullptr;
    for (Py_ssize_t i = 0; i < len; i++) {
      item = PyList_GetItem(obj, i);
      result.emplace_back(CastPyArg2VectorOfSize_t(item, arg_pos));
    }
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "argument (position %d) must be "
        "list but got %s",
517 518
        arg_pos + 1,
        reinterpret_cast<PyTypeObject*>(obj->ob_type)->tp_name));
W
wanghuancoder 已提交
519 520 521 522
  }
  return result;
}

523 524
platform::Place CastPyArg2Place(PyObject* obj, ssize_t arg_pos) {
  platform::Place place;
525
  if (PyObject_TypeCheck(obj, g_place_pytype)) {
526
    place = ::pybind11::handle(obj).cast<platform::Place>();
527
  } else if (PyObject_TypeCheck(obj, g_cudaplace_pytype)) {
528
    place = ::pybind11::handle(obj).cast<platform::CUDAPlace>();
529
  } else if (PyObject_TypeCheck(obj, g_cpuplace_pytype)) {
530
    place = ::pybind11::handle(obj).cast<platform::CPUPlace>();
531
  } else if (PyObject_TypeCheck(obj, g_xpuplace_pytype)) {
532
    place = ::pybind11::handle(obj).cast<platform::XPUPlace>();
533
  } else if (PyObject_TypeCheck(obj, g_cudapinnedplace_pytype)) {
534
    place = ::pybind11::handle(obj).cast<platform::CUDAPinnedPlace>();
535
  } else if (PyObject_TypeCheck(obj, g_customplace_pytype)) {
536
    place = ::pybind11::handle(obj).cast<platform::CustomPlace>();
537 538 539
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "argument (position %d) must be "
540
        "one "
张春乔 已提交
541
        "of(Place,CUDAPlace,CPUPlace,XPUPlace,CUDAPinnedPlace,"
542
        "CustomPlace), "
543
        "but got %s",
544 545
        arg_pos + 1,
        reinterpret_cast<PyTypeObject*>(obj->ob_type)->tp_name));
546 547 548 549
  }
  return place;
}

550
using phi::distributed::TensorDistAttr;
551
TensorDistAttr CastPyArg2DistAttr(PyObject* obj, ssize_t arg_pos) {
552
#ifdef PADDLE_WITH_DISTRIBUTE
L
LiYuRio 已提交
553 554
  if (PyObject_IsInstance(
          obj, reinterpret_cast<PyObject*>(g_tensor_dist_attr_pytype))) {
555
    return ::pybind11::handle(obj).cast<TensorDistAttr>();
L
LiYuRio 已提交
556 557 558 559 560 561 562
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "argument (position %d) must be "
        "TensorDistAttr, but got %s",
        arg_pos + 1,
        reinterpret_cast<PyTypeObject*>(obj->ob_type)->tp_name));
  }
563 564 565 566 567
#else
  PADDLE_THROW(platform::errors::Unavailable(
      "The parsing of `DistAttr` is not supported in the current "
      "PaddlePaddle, please recompile and installPaddlePaddle with the option "
      "of `WITH_DISTRIBUTE=ON`."));
L
LiYuRio 已提交
568
#endif
569
}
L
LiYuRio 已提交
570

571
phi::DenseTensor CastPyArg2FrameworkTensor(PyObject* obj, ssize_t arg_pos) {
572
  if (PyObject_TypeCheck(obj, g_framework_tensor_pytype)) {
573
    return ::pybind11::handle(obj).cast<phi::DenseTensor>();
574 575 576
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "argument (position %d) must be "
577
        "DenseTensor, but got %s",
578 579
        arg_pos + 1,
        reinterpret_cast<PyTypeObject*>(obj->ob_type)->tp_name));
580 581 582
  }
}

583 584
std::vector<phi::DenseTensor> CastPyArg2VectorOfTensorBase(PyObject* obj,
                                                           ssize_t arg_pos) {
585
  std::vector<phi::DenseTensor> result;
586 587 588 589 590
  if (PyList_Check(obj)) {
    Py_ssize_t len = PyList_Size(obj);
    PyObject* item = nullptr;
    for (Py_ssize_t i = 0; i < len; i++) {
      item = PyList_GetItem(obj, i);
591
      if (PyObject_TypeCheck(item, g_framework_tensor_pytype)) {
592
        result.emplace_back(::pybind11::handle(item).cast<phi::DenseTensor>());
593 594 595 596 597
      } else {
        PADDLE_THROW(platform::errors::InvalidArgument(
            "argument (position %d) must be "
            "list of LoDTensor, but got %s at pos %d",
            arg_pos + 1,
598 599
            reinterpret_cast<PyTypeObject*>(item->ob_type)->tp_name,
            i));
600 601 602 603 604 605 606
      }
    }
  } else if (PyTuple_Check(obj)) {
    Py_ssize_t len = PyTuple_Size(obj);
    PyObject* item = nullptr;
    for (Py_ssize_t i = 0; i < len; i++) {
      item = PyTuple_GetItem(obj, i);
607
      if (PyObject_TypeCheck(item, g_framework_tensor_pytype)) {
608
        result.emplace_back(::pybind11::handle(item).cast<phi::DenseTensor>());
609 610 611 612 613
      } else {
        PADDLE_THROW(platform::errors::InvalidArgument(
            "argument (position %d) must be "
            "list of LoDTensor, but got %s at pos %d",
            arg_pos + 1,
614 615
            reinterpret_cast<PyTypeObject*>(item->ob_type)->tp_name,
            i));
616 617
      }
    }
618
  } else if (PyObject_TypeCheck(obj, g_framework_lodtensorarray_pytype)) {
619 620 621 622
    for (auto& tensor :
         (::pybind11::handle(obj).cast<framework::LoDTensorArray>())) {
      result.emplace_back(tensor);
    }
623 624
  } else if (obj == Py_None) {
    return {};
625
  } else if (PyObject_TypeCheck(obj, g_framework_tensor_pytype)) {
626
    return {::pybind11::handle(obj).cast<phi::DenseTensor>()};
627 628 629 630
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "argument (position %d) must be "
        "list or tuple, but got %s",
631 632
        arg_pos + 1,
        reinterpret_cast<PyTypeObject*>(obj->ob_type)->tp_name));
633 634 635 636
  }
  return result;
}

J
Jiabin Yang 已提交
637 638 639
paddle::framework::proto::VarType::Type CastPyArg2ProtoType(PyObject* obj,
                                                            ssize_t arg_pos) {
  paddle::framework::proto::VarType::Type dtype;
640
  if (PyObject_TypeCheck(obj, g_vartype_pytype)) {
J
Jiabin Yang 已提交
641 642 643 644 645 646 647
    dtype =
        ::pybind11::handle(obj).cast<paddle::framework::proto::VarType::Type>();
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "argument (position %d) must be "
        "one of core.VarDesc.VarType, "
        "but got %s",
648 649
        arg_pos + 1,
        reinterpret_cast<PyTypeObject*>(obj->ob_type)->tp_name));
J
Jiabin Yang 已提交
650 651 652 653
  }
  return dtype;
}

654 655 656
paddle::DataType CastPyArg2DataTypeDirectly(PyObject* obj,
                                            const std::string& op_type,
                                            ssize_t arg_pos) {
657 658 659 660
  if (obj == Py_None) {
    return phi::DataType::UNDEFINED;
  }

661 662 663 664 665 666 667 668 669 670 671 672 673 674 675
  paddle::DataType dtype;
  if (PyObject_TypeCheck(obj, g_data_type_pytype)) {
    dtype = ::pybind11::handle(obj).cast<paddle::DataType>();
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "%s: argument (position %d) must be "
        "one of core.VarDesc.VarType, "
        "but got %s",
        op_type,
        arg_pos + 1,
        reinterpret_cast<PyTypeObject*>(obj->ob_type)->tp_name));
  }
  return dtype;
}

676
paddle::framework::Vocab CastPyArg2Vocab(PyObject* obj, ssize_t arg_pos) {
677
  if (PyDict_Check(obj)) {
678 679 680 681
    paddle::framework::Vocab vocab;
    vocab = ::pybind11::handle(obj)
                .cast<std::unordered_map<std::wstring, std::int32_t>>();
    return vocab;
682 683
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
684 685
        "argument (position %d) must be dict, but got %s",
        arg_pos + 1,
686 687 688 689
        reinterpret_cast<PyTypeObject*>(obj->ob_type)->tp_name));
  }
}

690 691
std::vector<std::string> CastPyArg2VectorOfString(PyObject* obj,
                                                  ssize_t arg_pos) {
692 693 694 695
  if (PyList_Check(obj)) {
    return ::pybind11::handle(obj).cast<std::vector<std::string>>();
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
696 697
        "argument (position %d) must be list, but got %s",
        arg_pos + 1,
698 699 700 701
        reinterpret_cast<PyTypeObject*>(obj->ob_type)->tp_name));
  }
}

702 703 704 705 706 707 708 709 710 711 712 713
PyObject* ToPyObject(bool value) {
  if (value) {
    Py_INCREF(Py_True);
    return Py_True;
  } else {
    Py_INCREF(Py_False);
    return Py_False;
  }
}

PyObject* ToPyObject(int value) { return PyLong_FromLong(value); }

714 715
PyObject* ToPyObject(uint32_t value) { return PyLong_FromUnsignedLong(value); }

716 717
PyObject* ToPyObject(int64_t value) { return PyLong_FromLongLong(value); }

W
wanghuancoder 已提交
718 719
PyObject* ToPyObject(size_t value) { return PyLong_FromSize_t(value); }

720 721 722 723 724 725 726 727 728 729
PyObject* ToPyObject(float value) { return PyLong_FromDouble(value); }

PyObject* ToPyObject(double value) { return PyLong_FromDouble(value); }

PyObject* ToPyObject(const char* value) { return PyUnicode_FromString(value); }

PyObject* ToPyObject(const std::string& value) {
  return PyUnicode_FromString(value.c_str());
}

730
PyObject* ToPyObject(const paddle::Tensor& value,
731
                     PyObject* args,
732 733 734 735 736 737 738 739 740
                     const std::map<ssize_t, ssize_t>& inplace_var_idx_map) {
  if (!inplace_var_idx_map.empty() && inplace_var_idx_map.count(0)) {
    return ToPyObject(args, inplace_var_idx_map.at(0));
  } else {
    return ToPyObject(value);
  }
}

PyObject* ToPyObject(PyObject* args, ssize_t arg_idx) {
741 742 743 744 745 746 747 748 749 750
  // For inplace op, directly return the input PyObject of the inplace tensor.
  // [Parameter]
  // args: Input PyObject.
  // arg_idx: Index of inplace PyObject in input args. Used to find the input
  // inplace PyObject.
  PyObject* obj = PyTuple_GET_ITEM(args, arg_idx);
  Py_INCREF(obj);
  return obj;
}

751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780
PyObject* ToPyObject(const std::vector<bool>& value) {
  PyObject* result = PyList_New((Py_ssize_t)value.size());

  for (size_t i = 0; i < value.size(); i++) {
    PyList_SET_ITEM(result, static_cast<Py_ssize_t>(i), ToPyObject(value[i]));
  }

  return result;
}

PyObject* ToPyObject(const std::vector<int>& value) {
  PyObject* result = PyList_New((Py_ssize_t)value.size());

  for (size_t i = 0; i < value.size(); i++) {
    PyList_SET_ITEM(result, static_cast<Py_ssize_t>(i), ToPyObject(value[i]));
  }

  return result;
}

PyObject* ToPyObject(const std::vector<int64_t>& value) {
  PyObject* result = PyList_New((Py_ssize_t)value.size());

  for (size_t i = 0; i < value.size(); i++) {
    PyList_SET_ITEM(result, (Py_ssize_t)i, ToPyObject(value[i]));
  }

  return result;
}

W
wanghuancoder 已提交
781 782 783 784 785 786 787 788 789 790
PyObject* ToPyObject(const std::vector<size_t>& value) {
  PyObject* result = PyList_New((Py_ssize_t)value.size());

  for (size_t i = 0; i < value.size(); i++) {
    PyList_SET_ITEM(result, (Py_ssize_t)i, ToPyObject(value[i]));
  }

  return result;
}

791 792 793 794 795 796 797 798 799 800 801 802 803
PyObject* ToPyObject(const std::vector<float>& value) {
  PyObject* result = PyList_New((Py_ssize_t)value.size());

  for (size_t i = 0; i < value.size(); i++) {
    PyList_SET_ITEM(result, static_cast<Py_ssize_t>(i), ToPyObject(value[i]));
  }

  return result;
}

PyObject* ToPyObject(const std::vector<double>& value) {
  PyObject* result = PyList_New((Py_ssize_t)value.size());

W
wanghuancoder 已提交
804 805 806 807 808 809 810 811 812 813
  for (size_t i = 0; i < value.size(); i++) {
    PyList_SET_ITEM(result, static_cast<Py_ssize_t>(i), ToPyObject(value[i]));
  }

  return result;
}

PyObject* ToPyObject(const std::vector<std::vector<size_t>>& value) {
  PyObject* result = PyList_New((Py_ssize_t)value.size());

814 815 816 817 818 819 820
  for (size_t i = 0; i < value.size(); i++) {
    PyList_SET_ITEM(result, static_cast<Py_ssize_t>(i), ToPyObject(value[i]));
  }

  return result;
}

821
PyObject* ToPyObject(const std::vector<paddle::Tensor>& value,
822
                     bool return_py_none_if_not_initialize) {
Y
Yuanle Liu 已提交
823 824 825
// NOTE(liuyuanle): I encountered a bug(access violation) in windows. ref to
// https://stackoverflow.com/questions/55598839/how-to-fix-access-violation-error-when-returning-pyobject-from-c-function-usin
#ifdef _WIN32
826
  PyGILState_STATE gstate = PyGILState_Ensure();
Y
Yuanle Liu 已提交
827
#endif
828
  PyObject* result = PyList_New((Py_ssize_t)value.size());
Y
Yuanle Liu 已提交
829
#ifdef _WIN32
830
  PyGILState_Release(gstate);
Y
Yuanle Liu 已提交
831
#endif
832 833

  for (size_t i = 0; i < value.size(); i++) {
834 835 836
    if (!value[i].initialized() && return_py_none_if_not_initialize) {
      Py_INCREF(Py_None);
      PyList_SET_ITEM(result, static_cast<Py_ssize_t>(i), Py_None);
837
    } else {
838 839 840
      PyObject* obj = p_tensor_type->tp_alloc(p_tensor_type, 0);
      if (obj) {
        auto v = reinterpret_cast<TensorObject*>(obj);
841
        new (&(v->tensor)) paddle::Tensor();
842 843 844 845 846 847
        v->tensor = value[i];
      } else {
        PADDLE_THROW(platform::errors::Fatal(
            "tp_alloc return null, can not new a PyObject."));
      }
      PyList_SET_ITEM(result, static_cast<Py_ssize_t>(i), obj);
848 849 850 851 852 853
    }
  }

  return result;
}

854 855
PyObject* ToPyObject(const std::vector<std::vector<paddle::Tensor>>& value,
                     bool return_py_none_if_not_initialize) {
856 857 858
  PyObject* result = PyList_New((Py_ssize_t)value.size());

  for (size_t i = 0; i < value.size(); i++) {
859 860 861
    PyList_SET_ITEM(result,
                    static_cast<Py_ssize_t>(i),
                    ToPyObject(value[i], return_py_none_if_not_initialize));
862 863 864 865 866
  }

  return result;
}

867 868 869 870 871 872
PyObject* ToPyObject(const platform::Place& value) {
  auto obj = ::pybind11::cast(value);
  obj.inc_ref();
  return obj.ptr();
}

J
Jiabin Yang 已提交
873 874 875 876 877 878
PyObject* ToPyObject(const paddle::framework::proto::VarType::Type& dtype) {
  auto obj = ::pybind11::cast(dtype);
  obj.inc_ref();
  return obj.ptr();
}

879 880 881 882 883 884
PyObject* ToPyObject(const paddle::framework::proto::VarType& type) {
  auto obj = ::pybind11::cast(type);
  obj.inc_ref();
  return obj.ptr();
}

885
PyObject* ToPyObject(const phi::DenseTensor* value) {
886
  auto obj = ::pybind11::cast(value, py::return_value_policy::reference);
887 888 889 890
  obj.inc_ref();
  return obj.ptr();
}

891 892 893 894 895 896
PyObject* ToPyObject(const ir::OpResult& value) {
  auto obj = ::pybind11::cast(value);
  obj.inc_ref();
  return obj.ptr();
}

897 898 899 900 901 902 903 904 905 906
PyObject* ToPyObject(const std::vector<ir::OpResult>& value) {
  PyObject* result = PyList_New((Py_ssize_t)value.size());

  for (size_t i = 0; i < value.size(); i++) {
    PyList_SET_ITEM(result, static_cast<Py_ssize_t>(i), ToPyObject(value[i]));
  }

  return result;
}

907
PyObject* ToPyObject(const phi::distributed::DistTensor* value) {
908
#ifdef PADDLE_WITH_DISTRIBUTE
L
LiYuRio 已提交
909 910 911
  auto obj = ::pybind11::cast(value, py::return_value_policy::reference);
  obj.inc_ref();
  return obj.ptr();
912 913 914 915 916 917
#else
  PADDLE_THROW(platform::errors::Unavailable(
      "DistTensor to PyObject is not supported in the current "
      "PaddlePaddle, please recompile and installPaddlePaddle with the option "
      "of `WITH_DISTRIBUTE=ON`."));
#endif
L
LiYuRio 已提交
918 919
}

920
PyObject* ToPyObject(const phi::distributed::TensorDistAttr* value) {
921
#ifdef PADDLE_WITH_DISTRIBUTE
L
LiYuRio 已提交
922 923 924
  auto obj = ::pybind11::cast(value, py::return_value_policy::reference);
  obj.inc_ref();
  return obj.ptr();
925 926 927 928 929
#else
  PADDLE_THROW(platform::errors::Unavailable(
      "TensorDistAttr to PyObject is not supported in the current "
      "PaddlePaddle, please recompile and installPaddlePaddle with the option "
      "of `WITH_DISTRIBUTE=ON`."));
L
LiYuRio 已提交
930
#endif
931
}
L
LiYuRio 已提交
932

933 934 935 936 937 938
PyObject* ToPyObject(const phi::SelectedRows* value) {
  auto obj = ::pybind11::cast(value, py::return_value_policy::reference);
  obj.inc_ref();
  return obj.ptr();
}

W
wanghuancoder 已提交
939 940
PyObject* ToPyObject(const void* value) {
  if (value == nullptr) {
941
    RETURN_PY_NONE
W
wanghuancoder 已提交
942 943 944 945 946
  }
  PADDLE_THROW(
      platform::errors::Fatal("ToPyObject do not support void* with value."));
}

947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967
PyObject* ToPyObject(const std::unordered_map<int, int>& value) {
  PyObject* dict = PyDict_New();
  for (const auto& map_iter : value) {
    // Convert Key
    PyObject* key = ToPyObject(map_iter.first);
    // Convert Value
    PyObject* value = ToPyObject(map_iter.second);

    if (!key || !value) {
      PADDLE_THROW(
          platform::errors::Fatal("Unable to convert int to PyObject"));
    }

    if (PyDict_SetItem(dict, key, value) != 0) {
      PADDLE_THROW(
          platform::errors::Fatal("Unable to set key:value for py_dict"));
    }
  }
  return dict;
}

968 969 970
PyObject* ToPyObject(
    const std::unordered_map<std::string, std::vector<std::string>>& value) {
  PyObject* dict = PyDict_New();
L
Leding Li 已提交
971
  for (const auto& map_iter : value) {
972 973 974 975 976 977 978 979 980
    // Convert Key
    PyObject* key_string = PyUnicode_FromString(map_iter.first.c_str());
    if (!key_string) {
      PADDLE_THROW(
          platform::errors::Fatal("Unable to convert std::string to PyObject"));
    }

    // Convert Val
    PyObject* py_list = PyList_New(0);
L
Leding Li 已提交
981
    for (const auto& vector_iter : map_iter.second) {
982 983 984 985 986 987 988 989 990 991
      PyObject* val_string = PyUnicode_FromString(vector_iter.c_str());
      if (!val_string) {
        PADDLE_THROW(platform::errors::Fatal(
            "Unable to convert std::string to PyObject"));
      }

      if (PyList_Append(py_list, val_string) != 0) {
        PADDLE_THROW(
            platform::errors::Fatal("Unable to append string to py_list"));
      }
Y
YuanRisheng 已提交
992
      Py_DECREF(val_string);
993 994 995 996 997 998
    }

    if (PyDict_SetItem(dict, key_string, py_list) != 0) {
      PADDLE_THROW(
          platform::errors::Fatal("Unable to set key:value for py_dict"));
    }
Y
YuanRisheng 已提交
999 1000
    Py_DECREF(py_list);
    Py_DECREF(key_string);
1001 1002 1003 1004 1005
  }

  return dict;
}

1006
PyObject* ToPyObject(const paddle::framework::Vocab& value) {
1007
  PyObject* dict = PyDict_New();
L
Leding Li 已提交
1008
  for (const auto& map_iter : value) {
1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027
    // Convert Key
    PyObject* key_string =
        PyUnicode_FromWideChar(map_iter.first.c_str(), map_iter.first.size());
    if (!key_string) {
      PADDLE_THROW(platform::errors::Fatal(
          "Unable to convert std::wstring to PyObject"));
    }

    // Convert Val
    PyObject* py_int = PyLong_FromLong(map_iter.second);

    if (PyDict_SetItem(dict, key_string, py_int) != 0) {
      PADDLE_THROW(
          platform::errors::Fatal("Unable to set key:value for py_dict"));
    }
  }
  return dict;
}

1028 1029
// For Final State Dygraph,
// We directly use paddle::optional(Tensor) as dispensable Tensor
1030
paddle::optional<paddle::Tensor> GetOptionalTensorFromArgs(
1031 1032 1033 1034 1035
    const std::string& op_type,
    const std::string& arg_name,
    PyObject* args,
    ssize_t arg_idx,
    bool dispensable) {
1036 1037 1038 1039 1040 1041 1042 1043 1044 1045
  PyObject* obj = PyTuple_GET_ITEM(args, arg_idx);

  if (PyTuple_Check(obj)) {
    obj = PyTuple_GET_ITEM(obj, 0);
  }

  if (obj == nullptr || obj == Py_None) {
    if (!dispensable) {
      PADDLE_THROW(platform::errors::InvalidArgument(
          "%s(): argument '%s' (position %d) must be Tensor, but got None",
1046 1047 1048
          op_type,
          arg_name,
          arg_idx));
1049
    }
H
hong 已提交
1050
    return paddle::none;
1051 1052
  }

1053
  if (PyObject_TypeCheck(obj, p_tensor_type)) {
1054
    return paddle::make_optional<paddle::Tensor>(
W
wanghuancoder 已提交
1055 1056 1057
        reinterpret_cast<TensorObject*>(obj)->tensor);
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
1058 1059 1060 1061
        "%s(): argument '%s' (position %d) must be Tensor, but got %s",
        op_type,
        arg_name,
        arg_idx,
W
wanghuancoder 已提交
1062 1063
        reinterpret_cast<PyTypeObject*>(obj->ob_type)->tp_name));
  }
1064 1065
}

1066
PyObject* ToPyObject(std::shared_ptr<egr::GradNodeBase> grad_node) {
1067
  py::object py_obj = py::cast(grad_node, py::return_value_policy::reference);
1068
  PyObject* py_grad_node = py_obj.release().ptr();
1069 1070 1071 1072
  Py_INCREF(py_grad_node);
  return py_grad_node;
}

1073 1074 1075 1076 1077
static paddle::Tensor& GetTensorFromPyObject(const std::string& op_type,
                                             const std::string& arg_name,
                                             PyObject* obj,
                                             ssize_t arg_idx,
                                             bool dispensable) {
1078 1079 1080 1081 1082 1083 1084 1085
  if (PyTuple_Check(obj)) {
    obj = PyTuple_GET_ITEM(obj, 0);
  }

  if (obj == nullptr || obj == Py_None) {
    if (!dispensable) {
      PADDLE_THROW(platform::errors::InvalidArgument(
          "%s(): argument '%s' (position %d) must be Tensor, but got None",
1086 1087 1088
          op_type,
          arg_name,
          arg_idx));
1089
    }
1090
    static paddle::Tensor emptytensor;
1091 1092 1093
    return emptytensor;
  }

1094
  if (PyObject_TypeCheck(obj, p_tensor_type)) {
W
wanghuancoder 已提交
1095
    return reinterpret_cast<TensorObject*>(obj)->tensor;
1096
  } else if (PyObject_TypeCheck(obj, p_string_tensor_type)) {
J
Jack Zhou 已提交
1097
    return reinterpret_cast<TensorObject*>(obj)->tensor;
W
wanghuancoder 已提交
1098 1099
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
1100 1101 1102 1103
        "%s(): argument '%s' (position %d) must be Tensor, but got %s",
        op_type,
        arg_name,
        arg_idx,
W
wanghuancoder 已提交
1104 1105
        reinterpret_cast<PyTypeObject*>(obj->ob_type)->tp_name));
  }
1106 1107
}

1108 1109
// For Intermediate State Dygraph,
// we use an uninitialized Tensor to represent dispensable Tensor
1110 1111 1112 1113 1114
paddle::Tensor& GetTensorFromArgs(const std::string& op_type,
                                  const std::string& arg_name,
                                  PyObject* args,
                                  ssize_t arg_idx,
                                  bool dispensable) {
1115 1116 1117 1118
  PyObject* obj = PyTuple_GET_ITEM(args, arg_idx);
  return GetTensorFromPyObject(op_type, arg_name, obj, arg_idx, dispensable);
}

1119 1120 1121 1122 1123
std::vector<paddle::Tensor> GetTensorListFromArgs(const std::string& op_type,
                                                  const std::string& arg_name,
                                                  PyObject* args,
                                                  ssize_t arg_idx,
                                                  bool dispensable) {
1124 1125 1126 1127 1128 1129 1130
  PyObject* list = PyTuple_GET_ITEM(args, arg_idx);

  if (list == nullptr) {
    if (!dispensable) {
      PADDLE_THROW(platform::errors::InvalidArgument(
          "%s(): argument '%s' (position %d) must be list of Tensor, but got "
          "None",
1131 1132 1133
          op_type,
          arg_name,
          arg_idx));
1134 1135 1136 1137
    }
    return {};
  }

1138
  std::vector<paddle::Tensor> result;
1139 1140 1141

  if (PyList_Check(list)) {
    Py_ssize_t len = PyList_Size(list);
1142
    result.reserve(static_cast<size_t>(len));
1143 1144 1145 1146
    if (len == 0) {
      PADDLE_THROW(platform::errors::InvalidArgument(
          "%s(): argument '%s' (position %d) must be list of Tensors, but got "
          "empty list",
1147 1148 1149
          op_type,
          arg_name,
          arg_idx));
1150 1151 1152
    }
    for (Py_ssize_t i = 0; i < len; i++) {
      result.emplace_back(
1153
          reinterpret_cast<TensorObject*>(PyList_GetItem(list, i))->tensor);
1154 1155 1156
    }
  } else if (PyTuple_Check(list)) {
    Py_ssize_t len = PyTuple_Size(list);
1157
    result.reserve(static_cast<size_t>(len));
1158 1159 1160 1161
    if (len == 0) {
      PADDLE_THROW(platform::errors::InvalidArgument(
          "%s(): argument '%s' (position %d) must be list of Tensors, but got "
          "empty list",
1162 1163 1164
          op_type,
          arg_name,
          arg_idx));
1165 1166 1167
    }
    for (Py_ssize_t i = 0; i < len; i++) {
      result.emplace_back(
1168
          reinterpret_cast<TensorObject*>(PyTuple_GetItem(list, i))->tensor);
1169
    }
1170 1171
  } else if (list == Py_None) {
    return {};
1172 1173 1174 1175
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "%s(): argument '%s' (position %d) must be list of Tensors, but got "
        "%s",
1176 1177 1178
        op_type,
        arg_name,
        arg_idx,
1179 1180 1181 1182 1183 1184
        (reinterpret_cast<PyTypeObject*>(list->ob_type))->tp_name));
  }

  return result;
}

1185 1186 1187 1188 1189 1190
paddle::optional<std::vector<paddle::Tensor>> GetOptionalTensorListFromArgs(
    const std::string& op_type,
    const std::string& arg_name,
    PyObject* args,
    ssize_t arg_idx,
    bool dispensable) {
1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204
  PyObject* list = PyTuple_GET_ITEM(args, arg_idx);

  if (list == nullptr || list == Py_None) {
    if (!dispensable) {
      PADDLE_THROW(platform::errors::InvalidArgument(
          "%s(): argument '%s' (position %d) must be list of Tensor, but got "
          "None",
          op_type,
          arg_name,
          arg_idx));
    }
    return paddle::none;
  }

1205
  std::vector<paddle::Tensor> result;
1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249

  if (PyList_Check(list)) {
    Py_ssize_t len = PyList_Size(list);
    result.reserve(static_cast<size_t>(len));
    if (len == 0) {
      PADDLE_THROW(platform::errors::InvalidArgument(
          "%s(): argument '%s' (position %d) must be list of Tensors, but got "
          "empty list",
          op_type,
          arg_name,
          arg_idx));
    }
    for (Py_ssize_t i = 0; i < len; i++) {
      result.emplace_back(
          reinterpret_cast<TensorObject*>(PyList_GetItem(list, i))->tensor);
    }
  } else if (PyTuple_Check(list)) {
    Py_ssize_t len = PyTuple_Size(list);
    result.reserve(static_cast<size_t>(len));
    if (len == 0) {
      PADDLE_THROW(platform::errors::InvalidArgument(
          "%s(): argument '%s' (position %d) must be list of Tensors, but got "
          "empty list",
          op_type,
          arg_name,
          arg_idx));
    }
    for (Py_ssize_t i = 0; i < len; i++) {
      result.emplace_back(
          reinterpret_cast<TensorObject*>(PyTuple_GetItem(list, i))->tensor);
    }
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "%s(): argument '%s' (position %d) must be list of Tensors, but got "
        "%s",
        op_type,
        arg_name,
        arg_idx,
        (reinterpret_cast<PyTypeObject*>(list->ob_type))->tp_name));
  }

  return result;
}

1250 1251 1252 1253 1254
paddle::Tensor* GetTensorPtrFromArgs(const std::string& op_type,
                                     const std::string& arg_name,
                                     PyObject* args,
                                     ssize_t arg_idx,
                                     bool dispensable) {
1255 1256 1257 1258 1259 1260 1261 1262 1263 1264
  PyObject* obj = PyTuple_GET_ITEM(args, arg_idx);

  if (PyTuple_Check(obj)) {
    obj = PyTuple_GET_ITEM(obj, 0);
  }

  if (obj == nullptr || obj == Py_None) {
    if (!dispensable) {
      PADDLE_THROW(platform::errors::InvalidArgument(
          "%s(): argument '%s' (position %d) must be Tensor, but got None",
1265 1266 1267
          op_type,
          arg_name,
          arg_idx));
1268
    }
1269
    static paddle::Tensor emptytensor;
1270 1271 1272
    return &emptytensor;
  }

1273
  if (PyObject_TypeCheck(obj, p_tensor_type)) {
W
wanghuancoder 已提交
1274 1275 1276
    return &(reinterpret_cast<TensorObject*>(obj)->tensor);
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
1277 1278 1279 1280
        "%s(): argument '%s' (position %d) must be Tensor, but got %s",
        op_type,
        arg_name,
        arg_idx,
W
wanghuancoder 已提交
1281 1282
        reinterpret_cast<PyTypeObject*>(obj->ob_type)->tp_name));
  }
1283 1284
}

1285
std::vector<paddle::Tensor*> GetTensorPtrListFromArgs(
1286 1287 1288 1289 1290
    const std::string& op_type,
    const std::string& arg_name,
    PyObject* args,
    ssize_t arg_idx,
    bool dispensable) {
1291 1292 1293 1294 1295 1296 1297
  PyObject* list = PyTuple_GET_ITEM(args, arg_idx);

  if (list == nullptr) {
    if (!dispensable) {
      PADDLE_THROW(platform::errors::InvalidArgument(
          "%s(): argument '%s' (position %d) must be list of Tensor, but got "
          "None",
1298 1299 1300
          op_type,
          arg_name,
          arg_idx));
1301 1302 1303 1304
    }
    return {};
  }

1305
  std::vector<paddle::Tensor*> result;
1306 1307 1308 1309 1310 1311 1312

  if (PyList_Check(list)) {
    Py_ssize_t len = PyList_Size(list);
    if (len == 0) {
      PADDLE_THROW(platform::errors::InvalidArgument(
          "%s(): argument '%s' (position %d) must be list of Tensors, but got "
          "empty list",
1313 1314 1315
          op_type,
          arg_name,
          arg_idx));
1316 1317 1318
    }
    for (Py_ssize_t i = 0; i < len; i++) {
      result.emplace_back(
1319
          &(reinterpret_cast<TensorObject*>(PyList_GetItem(list, i))->tensor));
1320 1321 1322 1323 1324 1325 1326
    }
  } else if (PyTuple_Check(list)) {
    Py_ssize_t len = PyTuple_Size(list);
    if (len == 0) {
      PADDLE_THROW(platform::errors::InvalidArgument(
          "%s(): argument '%s' (position %d) must be list of Tensors, but got "
          "empty list",
1327 1328 1329
          op_type,
          arg_name,
          arg_idx));
1330 1331 1332
    }
    for (Py_ssize_t i = 0; i < len; i++) {
      result.emplace_back(
1333
          &(reinterpret_cast<TensorObject*>(PyTuple_GetItem(list, i))->tensor));
1334
    }
1335 1336
  } else if (list == Py_None) {
    return {};
1337 1338 1339 1340
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "%s(): argument '%s' (position %d) must be list of Tensors, but got "
        "%s",
1341 1342 1343
        op_type,
        arg_name,
        arg_idx,
1344 1345 1346 1347 1348
        (reinterpret_cast<PyTypeObject*>(list->ob_type))->tp_name));
  }

  return result;
}
J
Jiabin Yang 已提交
1349

1350 1351
std::vector<paddle::Tensor*> GetTensorPtrListFromPyObject(PyObject* obj) {
  std::vector<paddle::Tensor*> result;
W
wanghuancoder 已提交
1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382

  if (PyList_Check(obj)) {
    Py_ssize_t len = PyList_Size(obj);
    if (len == 0) {
      PADDLE_THROW(
          platform::errors::InvalidArgument("The list of Tensor is empty."));
    }
    for (Py_ssize_t i = 0; i < len; i++) {
      result.emplace_back(
          &(reinterpret_cast<TensorObject*>(PyList_GetItem(obj, i))->tensor));
    }
  } else if (PyTuple_Check(obj)) {
    Py_ssize_t len = PyTuple_Size(obj);
    if (len == 0) {
      PADDLE_THROW(
          platform::errors::InvalidArgument("The tuple of Tensor is empty."));
    }
    for (Py_ssize_t i = 0; i < len; i++) {
      result.emplace_back(
          &(reinterpret_cast<TensorObject*>(PyTuple_GetItem(obj, i))->tensor));
    }
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "The PyObject must be list of Tensors, but got "
        "%s",
        (reinterpret_cast<PyTypeObject*>(obj->ob_type))->tp_name));
  }

  return result;
}

1383 1384
std::vector<paddle::Tensor> GetTensorListFromPyObject(PyObject* obj,
                                                      bool allow_none) {
1385
  std::vector<paddle::Tensor> result;
W
wanghuancoder 已提交
1386 1387 1388 1389 1390
  if (PyList_Check(obj)) {
    Py_ssize_t len = PyList_Size(obj);
    PyObject* item = nullptr;
    for (Py_ssize_t i = 0; i < len; i++) {
      item = PyList_GetItem(obj, i);
1391
      if (PyObject_TypeCheck(item, p_tensor_type)) {
W
wanghuancoder 已提交
1392
        result.emplace_back(reinterpret_cast<TensorObject*>(item)->tensor);
1393 1394 1395
      } else if (allow_none && (item == Py_None)) {
        VLOG(4) << "Got None in Tensor list: " << i;
        result.emplace_back();
W
wanghuancoder 已提交
1396 1397 1398 1399
      } else {
        PADDLE_THROW(platform::errors::InvalidArgument(
            "argument must be "
            "list of Tensor, but got %s at pos %d",
1400 1401
            reinterpret_cast<PyTypeObject*>(item->ob_type)->tp_name,
            i));
W
wanghuancoder 已提交
1402 1403 1404 1405 1406 1407 1408
      }
    }
  } else if (PyTuple_Check(obj)) {
    Py_ssize_t len = PyTuple_Size(obj);
    PyObject* item = nullptr;
    for (Py_ssize_t i = 0; i < len; i++) {
      item = PyTuple_GetItem(obj, i);
1409
      if (PyObject_TypeCheck(item, p_tensor_type)) {
W
wanghuancoder 已提交
1410
        result.emplace_back(reinterpret_cast<TensorObject*>(item)->tensor);
1411 1412 1413
      } else if (allow_none && (item == Py_None)) {
        VLOG(4) << "Got None in Tensor list: " << i;
        result.emplace_back();
W
wanghuancoder 已提交
1414 1415 1416 1417
      } else {
        PADDLE_THROW(platform::errors::InvalidArgument(
            "argument must be "
            "list of Tensor, but got %s at pos %d",
1418 1419
            reinterpret_cast<PyTypeObject*>(item->ob_type)->tp_name,
            i));
W
wanghuancoder 已提交
1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430
      }
    }
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "argument must be "
        "list or tuple, but got %s",
        reinterpret_cast<PyTypeObject*>(obj->ob_type)->tp_name));
  }
  return result;
}

1431
paddle::Tensor& UnSafeGetTensorFromPyObject(PyObject* obj) {
W
wanghuancoder 已提交
1432 1433
  return reinterpret_cast<TensorObject*>(obj)->tensor;
}
1434 1435 1436 1437 1438
paddle::experimental::Scalar CastNumpy2Scalar(PyObject* obj,
                                              const std::string& op_type,
                                              ssize_t arg_pos) {
  PyTypeObject* type = obj->ob_type;
  auto type_name = std::string(type->tp_name);
L
Leo Chen 已提交
1439
  VLOG(4) << "type_name: " << type_name;
1440 1441 1442 1443 1444 1445 1446 1447
  if (type_name == "numpy.ndarray" && PySequence_Check(obj)) {
    PyObject* item = nullptr;
    item = PySequence_GetItem(obj, 0);
    if (PyObject_CheckFloatOrToFloat(&item)) {
      float value = static_cast<float>(PyFloat_AsDouble(item));
      return paddle::experimental::Scalar(value);
    } else {
      PADDLE_THROW(platform::errors::InvalidArgument(
C
co63oc 已提交
1448
          "%s(): argument (position %d) is numpy.ndarray, the inner elements "
1449 1450
          "must be "
          "numpy.float32/float64 now, but got %s",
1451 1452 1453
          op_type,
          arg_pos + 1,
          type_name));  // NOLINT
1454 1455
    }
  } else if (type_name == "numpy.float64") {
1456 1457 1458 1459 1460
    double value = CastPyArg2Double(obj, op_type, arg_pos);
    return paddle::experimental::Scalar(value);
  } else if (type_name == "numpy.float32") {
    float value = CastPyArg2Float(obj, op_type, arg_pos);
    return paddle::experimental::Scalar(value);
1461 1462 1463
  } else if (type_name == "numpy.float16") {
    float16 value = CastPyArg2Float16(obj, op_type, arg_pos);
    return paddle::experimental::Scalar(value);
1464 1465 1466
  } else if (type_name == "numpy.int64") {
    int64_t value = CastPyArg2Long(obj, op_type, arg_pos);
    return paddle::experimental::Scalar(value);
1467
  } else if (type_name == "numpy.int32" || type_name == "numpy.intc") {
1468 1469
    int value = CastPyArg2Int(obj, op_type, arg_pos);
    return paddle::experimental::Scalar(value);
1470 1471 1472 1473 1474 1475 1476
  } else if (type_name == "numpy.complex64") {
    phi::dtype::complex<float> value = CastPyArg2Complex(obj, op_type, arg_pos);
    return paddle::experimental::Scalar(value);
  } else if (type_name == "numpy.complex128") {
    phi::dtype::complex<double> value =
        CastPyArg2Complex128(obj, op_type, arg_pos);
    return paddle::experimental::Scalar(value);
1477 1478 1479
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "%s(): argument (position %d) must be "
1480 1481
        "numpy.float32/float64, numpy.int32/int64, numpy.complex64/complex128, "
        "but got %s",
1482 1483 1484
        op_type,
        arg_pos + 1,
        type_name));  // NOLINT
1485 1486 1487
  }
}

1488 1489
ir::OpResult CastPyArg2OpResult(PyObject* obj,
                                const std::string& op_type,
1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502
                                size_t arg_pos) {
  if (PyObject_TypeCheck(obj, g_ir_opresult_pytype)) {
    return ::pybind11::handle(obj).cast<ir::OpResult>();
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "%s(): argument (position %d) must be "
        "OpResult, but got %s",
        op_type,
        arg_pos + 1,
        ((PyTypeObject*)obj->ob_type)->tp_name));  // NOLINT
  }
}

1503 1504
std::vector<ir::OpResult> CastPyArg2VectorOfOpResult(PyObject* obj,
                                                     const std::string& op_type,
1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559
                                                     size_t arg_pos) {
  std::vector<ir::OpResult> result_list;
  if (PyList_Check(obj)) {
    Py_ssize_t len = PyList_Size(obj);
    PyObject* item = nullptr;
    for (Py_ssize_t i = 0; i < len; i++) {
      item = PyList_GetItem(obj, i);
      if (PyObject_TypeCheck(item, g_ir_opresult_pytype)) {
        result_list.emplace_back(::pybind11::handle(item).cast<ir::OpResult>());
      } else if (item == Py_None) {
        continue;
      } else {
        PADDLE_THROW(platform::errors::InvalidArgument(
            "%s(): argument (position %d) must be "
            "vector<OpResult>, but got vector<%s>",
            op_type,
            arg_pos + 1,
            reinterpret_cast<PyTypeObject*>(item->ob_type)
                ->tp_name));  // NOLINT
      }
    }
  } else if (PyTuple_Check(obj)) {
    Py_ssize_t len = PyTuple_Size(obj);
    PyObject* item = nullptr;
    for (Py_ssize_t i = 0; i < len; i++) {
      item = PyTuple_GetItem(obj, i);
      if (PyObject_TypeCheck(item, g_ir_opresult_pytype)) {
        result_list.emplace_back(::pybind11::handle(item).cast<ir::OpResult>());
      } else if (item == Py_None) {
        continue;
      } else {
        PADDLE_THROW(platform::errors::InvalidArgument(
            "%s(): argument (position %d) must be "
            "vector<OpResult>, but got vector<%s>",
            op_type,
            arg_pos + 1,
            reinterpret_cast<PyTypeObject*>(item->ob_type)
                ->tp_name));  // NOLINT
      }
    }
  } else if (PyObject_TypeCheck(obj, g_ir_opresult_pytype)) {
    return {::pybind11::handle(obj).cast<ir::OpResult>()};
  } else if (obj == Py_None) {
    return {};
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "%s(): argument (position %d) must be "
        "Vector<>, but got %s",
        op_type,
        arg_pos + 1,
        ((PyTypeObject*)obj->ob_type)->tp_name));  // NOLINT
  }
  return result_list;
}

1560 1561 1562 1563 1564 1565
paddle::experimental::Scalar CastPyArg2Scalar(PyObject* obj,
                                              const std::string& op_type,
                                              ssize_t arg_pos) {
  if (obj == Py_None) {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "%s(): argument (position %d) must be "
1566
        "int, float, bool or Tensor, but got %s",
1567 1568
        op_type,
        arg_pos + 1,
1569 1570 1571 1572 1573 1574
        ((PyTypeObject*)obj->ob_type)->tp_name));  // NOLINT
  }

  // obj could be: int, float, bool, paddle.Tensor
  PyTypeObject* type = obj->ob_type;
  auto type_name = std::string(type->tp_name);
L
Leo Chen 已提交
1575
  VLOG(4) << "type_name: " << type_name;
1576 1577 1578 1579
  if (PyBool_Check(obj)) {
    bool value = CastPyArg2Boolean(obj, op_type, arg_pos);
    return paddle::experimental::Scalar(value);
  } else if (PyLong_Check(obj)) {
1580
    int64_t value = CastPyArg2Long(obj, op_type, arg_pos);
1581
    return paddle::experimental::Scalar(value);
1582
  } else if (PyFloat_Check(obj)) {
1583
    double value = CastPyArg2Double(obj, op_type, arg_pos);
1584
    return paddle::experimental::Scalar(value);
1585
  } else if (PyCheckTensor(obj)) {
1586
    paddle::Tensor& value = GetTensorFromPyObject(
1587 1588
        op_type, "" /*arg_name*/, obj, arg_pos, false /*dispensable*/);
    return paddle::experimental::Scalar(value);
1589 1590
  } else if (type_name.find("numpy") != std::string::npos) {
    return CastNumpy2Scalar(obj, op_type, arg_pos);
1591
  } else if (PyComplex_Check(obj)) {
1592
    auto value = CastPyArg2Complex128(obj, op_type, arg_pos);
1593
    return paddle::experimental::Scalar(value);
1594 1595 1596
  } else if (PyObject_CheckLongOrToLong(&obj)) {
    int value = CastPyArg2Int(obj, op_type, arg_pos);
    return paddle::experimental::Scalar(value);
1597 1598 1599
  } else if (PyObject_CheckString(obj)) {
    std::string value = CastPyArg2String(obj, op_type, arg_pos);
    return paddle::experimental::Scalar(value);
1600 1601 1602
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "%s(): argument (position %d) must be "
1603
        "int, float, bool or Tensor, but got %s",
1604 1605
        op_type,
        arg_pos + 1,
1606 1607 1608 1609 1610 1611 1612
        ((PyTypeObject*)obj->ob_type)->tp_name));  // NOLINT
  }

  // Fake a Scalar
  return paddle::experimental::Scalar(1.0);
}

1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626
std::vector<phi::Scalar> CastPyArg2ScalarArray(PyObject* obj,
                                               const std::string& op_type,
                                               ssize_t arg_pos) {
  if (obj == Py_None) {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "%s(): argument (position %d) must be "
        "a list of int, float, or bool, but got %s",
        op_type,
        arg_pos + 1,
        ((PyTypeObject*)obj->ob_type)->tp_name));  // NOLINT
  }

  PyTypeObject* type = obj->ob_type;
  auto type_name = std::string(type->tp_name);
L
Leo Chen 已提交
1627
  VLOG(4) << "type_name: " << type_name;
1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646
  if (PyList_Check(obj)) {
    Py_ssize_t len = PyList_Size(obj);
    PyObject* item = nullptr;
    item = PyList_GetItem(obj, 0);
    if (PyObject_CheckFloatOrToFloat(&item)) {
      std::vector<phi::Scalar> value;
      for (Py_ssize_t i = 0; i < len; i++) {
        item = PyList_GetItem(obj, i);
        value.emplace_back(phi::Scalar{PyFloat_AsDouble(item)});
      }
      return value;
    } else if (PyObject_CheckLongOrToLong(&item)) {
      std::vector<phi::Scalar> value;
      for (Py_ssize_t i = 0; i < len; i++) {
        item = PyList_GetItem(obj, i);
        value.emplace_back(
            phi::Scalar{static_cast<int64_t>(PyLong_AsLong(item))});
      }
      return value;
1647 1648 1649 1650 1651 1652 1653 1654
    } else if (PyObject_CheckComplexOrToComplex(&item)) {
      std::vector<phi::Scalar> value;
      for (Py_ssize_t i = 0; i < len; i++) {
        item = PyList_GetItem(obj, i);
        Py_complex v = PyComplex_AsCComplex(item);
        value.emplace_back(phi::Scalar{std::complex<double>(v.real, v.imag)});
      }
      return value;
1655 1656 1657 1658
    }
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "%s(): argument (position %d) must be "
1659
        "a list of int, float, complex, or bool, but got %s",
1660 1661 1662 1663 1664 1665 1666 1667 1668
        op_type,
        arg_pos + 1,
        ((PyTypeObject*)obj->ob_type)->tp_name));  // NOLINT
  }

  // Fake a ScalarArray
  return std::vector<phi::Scalar>({phi::Scalar(1.0)});
}

1669 1670 1671
paddle::experimental::IntArray CastPyArg2IntArray(PyObject* obj,
                                                  const std::string& op_type,
                                                  ssize_t arg_pos) {
1672
  if (obj == Py_None) {
1673
    return paddle::experimental::IntArray({});
1674 1675 1676 1677 1678
  }

  // obj could be: int, float, bool, paddle.Tensor
  PyTypeObject* type = obj->ob_type;
  auto type_name = std::string(type->tp_name);
1679 1680
  if (type_name == "list" || type_name == "tuple" ||
      type_name == "numpy.ndarray") {
1681
    std::vector<int64_t> value = CastPyArg2Longs(obj, op_type, arg_pos);
1682
    return paddle::experimental::IntArray(value);
H
hong 已提交
1683
  } else if (type_name == "paddle.Tensor" || type_name == "Tensor") {
1684
    paddle::Tensor& value = GetTensorFromPyObject(
1685
        op_type, "" /*arg_name*/, obj, arg_pos, false /*dispensable*/);
1686
    return paddle::experimental::IntArray(value);
1687 1688 1689
  } else if (PyObject_CheckLongOrConvertToLong(&obj)) {
    return paddle::experimental::IntArray(
        {static_cast<int64_t>(PyLong_AsLong(obj))});
1690 1691 1692
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "%s(): argument (position %d) must be "
1693
        "list or int, but got %s",
1694 1695
        op_type,
        arg_pos + 1,
1696 1697 1698
        ((PyTypeObject*)obj->ob_type)->tp_name));  // NOLINT
  }

1699 1700
  // Fake a IntArray
  return paddle::experimental::IntArray({1});
1701 1702
}

0
0x45f 已提交
1703
paddle::framework::Scope* CastPyArg2ScopePtr(PyObject* obj) {
1704
  if (PyObject_TypeCheck(obj, g_framework_scope_pytype)) {
0
0x45f 已提交
1705 1706 1707 1708 1709 1710 1711 1712
    return ::pybind11::handle(obj).cast<paddle::framework::Scope*>();
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "PyObject can not be cast into framework::Scope"));
  }
}

std::vector<paddle::framework::Scope*> GetScopePtrListFromArgs(
1713 1714 1715 1716 1717
    const std::string& op_type,
    const std::string& arg_name,
    PyObject* args,
    ssize_t arg_idx,
    bool dispensable) {
0
0x45f 已提交
1718 1719 1720 1721 1722 1723
  PyObject* list = PyTuple_GET_ITEM(args, arg_idx);
  if (list == nullptr) {
    if (!dispensable) {
      PADDLE_THROW(platform::errors::InvalidArgument(
          "%s(): argument '%s' (position %d) must be list of scope, but got "
          "None",
1724 1725 1726
          op_type,
          arg_name,
          arg_idx));
0
0x45f 已提交
1727 1728 1729 1730 1731 1732 1733 1734 1735 1736
    }
  }

  std::vector<paddle::framework::Scope*> result;
  if (PyList_Check(list)) {
    Py_ssize_t len = PyList_Size(list);
    if (len == 0) {
      PADDLE_THROW(platform::errors::InvalidArgument(
          "%s(): argument '%s' (position %d) must be list of scope, but got "
          "empty list",
1737 1738 1739
          op_type,
          arg_name,
          arg_idx));
0
0x45f 已提交
1740 1741 1742 1743 1744 1745 1746 1747 1748 1749
    }
    for (Py_ssize_t i = 0; i < len; i++) {
      result.emplace_back(CastPyArg2ScopePtr(PyList_GetItem(list, i)));
    }
  } else if (PyTuple_Check(list)) {
    Py_ssize_t len = PyTuple_Size(list);
    if (len == 0) {
      PADDLE_THROW(platform::errors::InvalidArgument(
          "%s(): argument '%s' (position %d) must be list of scope, but got "
          "empty list",
1750 1751 1752
          op_type,
          arg_name,
          arg_idx));
0
0x45f 已提交
1753 1754 1755 1756 1757 1758 1759 1760 1761 1762
    }
    for (Py_ssize_t i = 0; i < len; i++) {
      result.emplace_back(CastPyArg2ScopePtr(PyList_GetItem(list, i)));
    }
  } else if (list == Py_None) {
    return {};
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "%s(): argument '%s' (position %d) must be list of Tensors, but got "
        "%s",
1763 1764 1765
        op_type,
        arg_name,
        arg_idx,
0
0x45f 已提交
1766 1767 1768 1769 1770
        (reinterpret_cast<PyTypeObject*>(list->ob_type))->tp_name));
  }
  return result;
}

1771 1772
paddle::Place CastPyArg2Place(PyObject* obj,
                              const std::string& op_type,
1773
                              ssize_t arg_pos) {
1774
  return CastPyArg2Place(obj, arg_pos);
1775 1776
}

1777 1778
paddle::DataType CastPyArg2DataType(PyObject* obj,
                                    const std::string& op_type,
1779
                                    ssize_t arg_pos) {
1780
  if (obj == Py_None) {
1781
    return phi::DataType::UNDEFINED;
1782 1783 1784 1785 1786
  }

  framework::proto::VarType::Type type = CastPyArg2ProtoType(obj, arg_pos);
  return framework::TransToPhiDataType(type);
}
1787

1788
paddle::Tensor PyTensorHook::operator()(const paddle::Tensor& var) {
1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807
  py::gil_scoped_acquire gil;
  VLOG(3) << "Call PyTensorHook for var " << var.name();

  PyObject* res = nullptr;
  try {
    PyObject* p_tmp_var = ToPyObject(var);
    res = PyObject_CallFunctionObjArgs(py_func_, p_tmp_var, nullptr);
    Py_DECREF(p_tmp_var);
  } catch (platform::EnforceNotMet& e) {
    throw std::move(e);
  } catch (std::exception& e) {
    PADDLE_THROW(platform::errors::Unavailable(
        "Hook function of Tensor raises an exception: %s.", e.what()));
  } catch (...) {
    PADDLE_THROW(platform::errors::Fatal(
        "Hook function of Tensor raises an unknown exception."));
  }

  PADDLE_ENFORCE_NOT_NULL(res,
1808 1809
                          paddle::platform::errors::External(
                              pybind11::detail::error_string().c_str()));
1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834
  if (res == Py_None) {
    return var;
  }
  auto res_tensor = reinterpret_cast<TensorObject*>(res)->tensor;
  Py_DECREF(res);
  return res_tensor;
}

void PyVoidHook::operator()() {
  py::gil_scoped_acquire gil;
  VLOG(3) << "Call PyVoidHook";

  try {
    PyObject_CallFunctionObjArgs(py_func_, nullptr);
  } catch (platform::EnforceNotMet& e) {
    throw std::move(e);
  } catch (std::exception& e) {
    PADDLE_THROW(platform::errors::Unavailable(
        "Hook function of Tensor raises an exception: %s.", e.what()));
  } catch (...) {
    PADDLE_THROW(platform::errors::Fatal(
        "Hook function of Tensor raises an unknown exception."));
  }
}

1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868
PyObjectHolder::PyObjectHolder(PyObject* ptr) { ptr_ = ptr; }

PyObjectHolder::~PyObjectHolder() {
  ::pybind11::gil_scoped_acquire gil;
  Py_XDECREF(ptr_);
}

void* PyObjectHolder::get() { return reinterpret_cast<void*>(ptr_); }

void PyObjectHolder::reset(void* ptr) {
  if (ptr_) {
    ::pybind11::gil_scoped_acquire gil;
    Py_XDECREF(ptr_);
  }
  ptr_ = reinterpret_cast<PyObject*>(ptr);
}

void PyObjectHolder::inc_ref() {
  ::pybind11::gil_scoped_acquire gil;
  Py_XINCREF(ptr_);
}
void PyObjectHolder::dec_ref() {
  ::pybind11::gil_scoped_acquire gil;
  Py_XDECREF(ptr_);
}

PackHook::PackHook(PyObject* hook) : hook_(hook) { Py_INCREF(hook_); }

PackHook::~PackHook() {
  ::pybind11::gil_scoped_acquire gil;
  Py_DECREF(hook_);
}

std::shared_ptr<egr::PyObjectHolderBase> PackHook::operator()(
1869
    const paddle::Tensor& tensor) {
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906
  bool grad_tmp = egr::Controller::Instance().HasGrad();
  egr::Controller::Instance().SetHasGrad(false);
  ::pybind11::gil_scoped_acquire gil;
  auto args = PyTuple_New(1);
  PyTuple_SET_ITEM(args, 0, paddle::pybind::ToPyObject(tensor));
  PyObject* ret = PyObject_Call(hook_, args, nullptr);
  PADDLE_ENFORCE_NOT_NULL(ret,
                          paddle::platform::errors::External(
                              pybind11::detail::error_string().c_str()));
  Py_XDECREF(args);
  egr::Controller::Instance().SetHasGrad(grad_tmp);
  return std::make_shared<PyObjectHolder>(ret);
}

void* PackHook::operator()(void* py_tensor) {
  bool grad_tmp = egr::Controller::Instance().HasGrad();
  egr::Controller::Instance().SetHasGrad(false);
  ::pybind11::gil_scoped_acquire gil;
  auto args = PyTuple_New(1);
  Py_INCREF(reinterpret_cast<PyObject*>(py_tensor));
  PyTuple_SET_ITEM(args, 0, reinterpret_cast<PyObject*>(py_tensor));
  PyObject* ret = PyObject_Call(hook_, args, nullptr);
  PADDLE_ENFORCE_NOT_NULL(ret,
                          paddle::platform::errors::External(
                              pybind11::detail::error_string().c_str()));
  Py_XDECREF(args);
  egr::Controller::Instance().SetHasGrad(grad_tmp);
  return reinterpret_cast<void*>(ret);
}

UnPackHook::UnPackHook(PyObject* hook) : hook_(hook) { Py_INCREF(hook_); }

UnPackHook::~UnPackHook() {
  ::pybind11::gil_scoped_acquire gil;
  Py_DECREF(hook_);
}

1907
paddle::Tensor UnPackHook::operator()(
1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921
    std::shared_ptr<egr::PyObjectHolderBase> packed_value) {
  bool grad_tmp = egr::Controller::Instance().HasGrad();
  egr::Controller::Instance().SetHasGrad(false);
  ::pybind11::gil_scoped_acquire gil;
  auto args = PyTuple_New(1);
  Py_INCREF(reinterpret_cast<PyObject*>(packed_value->get()));
  PyTuple_SET_ITEM(args, 0, reinterpret_cast<PyObject*>(packed_value->get()));
  PyObject* ret = PyObject_Call(hook_, args, nullptr);
  PADDLE_ENFORCE_NOT_NULL(ret,
                          paddle::platform::errors::External(
                              pybind11::detail::error_string().c_str()));
  Py_XDECREF(args);
  egr::Controller::Instance().SetHasGrad(grad_tmp);

1922
  PADDLE_ENFORCE_EQ(paddle::pybind::PyCheckTensor(ret),
1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946
                    true,
                    paddle::platform::errors::InvalidArgument(
                        "paddle.autograd.saved_tensors_hooks only one pair "
                        "of hooks is allowed at a time."));

  auto tensor = reinterpret_cast<paddle::pybind::TensorObject*>(ret)->tensor;
  Py_XDECREF(ret);
  return tensor;
}

void* UnPackHook::operator()(void* packed_value, void* other) {
  bool grad_tmp = egr::Controller::Instance().HasGrad();
  egr::Controller::Instance().SetHasGrad(false);
  ::pybind11::gil_scoped_acquire gil;
  auto args = PyTuple_New(1);
  Py_INCREF(reinterpret_cast<PyObject*>(packed_value));
  PyTuple_SET_ITEM(args, 0, reinterpret_cast<PyObject*>(packed_value));
  PyObject* ret = PyObject_Call(hook_, args, nullptr);
  PADDLE_ENFORCE_NOT_NULL(ret,
                          paddle::platform::errors::External(
                              pybind11::detail::error_string().c_str()));
  Py_XDECREF(args);
  egr::Controller::Instance().SetHasGrad(grad_tmp);

1947
  PADDLE_ENFORCE_EQ(paddle::pybind::PyCheckTensor(ret),
1948 1949 1950 1951 1952 1953 1954 1955
                    true,
                    paddle::platform::errors::InvalidArgument(
                        "paddle.autograd.saved_tensors_hooks only one pair "
                        "of hooks is allowed at a time."));

  return reinterpret_cast<void*>(ret);
}

1956 1957
}  // namespace pybind
}  // namespace paddle