eager_utils.h 9.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
/* 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. */
#pragma once

13 14 15 16 17
#if defined(_MSC_VER)
#include <BaseTsd.h>
typedef SSIZE_T ssize_t;
#endif

18
#include <Python.h>
19 20
#include "paddle/phi/common/backend.h"
#include "paddle/phi/common/data_type.h"
21
#include "paddle/phi/common/int_array.h"
22
#include "paddle/phi/common/scalar.h"
23
#include "paddle/phi/core/dense_tensor.h"
24

25 26 27
#include "pybind11/pybind11.h"
#include "pybind11/stl.h"
namespace paddle {
28
class CustomOpKernelContext;
0
0x45f 已提交
29 30 31
namespace framework {
class Scope;
}
32 33
namespace pybind {

34
int TensorDtype2NumpyDtype(phi::DataType dtype);
35

W
wanghuancoder 已提交
36 37
bool IsEagerTensor(PyObject* obj);

38 39 40 41 42 43
bool PyObject_CheckLongOrConvertToLong(PyObject** obj);
bool PyObject_CheckFloatOrConvertToFloat(PyObject** obj);
bool PyObject_CheckStr(PyObject* obj);
bool CastPyArg2AttrBoolean(PyObject* obj, ssize_t arg_pos);
int CastPyArg2AttrInt(PyObject* obj, ssize_t arg_pos);
int64_t CastPyArg2AttrLong(PyObject* obj, ssize_t arg_pos);
W
wanghuancoder 已提交
44
size_t CastPyArg2AttrSize_t(PyObject* obj, ssize_t arg_pos);
45 46
float CastPyArg2AttrFloat(PyObject* obj, ssize_t arg_pos);
std::string CastPyArg2AttrString(PyObject* obj, ssize_t arg_pos);
47 48
paddle::CustomOpKernelContext CastPyArg2CustomOpKernelContext(PyObject* obj,
                                                              ssize_t arg_pos);
49
paddle::experimental::Tensor CastPyArg2Tensor(PyObject* obj, ssize_t arg_pos);
J
Jiabin Yang 已提交
50 51
std::shared_ptr<imperative::VarBase> CastPyArg2VarBase(PyObject* obj,
                                                       ssize_t arg_pos);
52 53
std::vector<paddle::experimental::Tensor> CastPyArg2VectorOfTensor(
    PyObject* obj, ssize_t arg_pos);
54
platform::Place CastPyArg2Place(PyObject* obj, ssize_t arg_pos);
55
framework::Tensor CastPyArg2FrameworkTensor(PyObject* obj, ssize_t arg_pos);
56 57
std::vector<framework::LoDTensor> CastPyArg2VectorOfTensorBase(PyObject* obj,
                                                               ssize_t arg_pos);
58
std::vector<int> CastPyArg2VectorOfInt(PyObject* obj, size_t arg_pos);
W
wanghuancoder 已提交
59 60 61
std::vector<size_t> CastPyArg2VectorOfSize_t(PyObject* obj, size_t arg_pos);
std::vector<std::vector<size_t>> CastPyArg2VectorOfVectorOfSize_t(
    PyObject* obj, size_t arg_pos);
J
Jiabin Yang 已提交
62 63
framework::proto::VarType::Type CastPyArg2ProtoType(PyObject* obj,
                                                    ssize_t arg_pos);
64

65
PyObject* ToPyObject(int value);
66
PyObject* ToPyObject(uint32_t value);
67 68
PyObject* ToPyObject(bool value);
PyObject* ToPyObject(int64_t value);
W
wanghuancoder 已提交
69
PyObject* ToPyObject(size_t value);
70 71 72 73
PyObject* ToPyObject(float value);
PyObject* ToPyObject(double value);
PyObject* ToPyObject(const char* value);
PyObject* ToPyObject(const std::string& value);
W
wanghuancoder 已提交
74 75
PyObject* ToPyObject(const paddle::experimental::Tensor& value,
                     bool return_py_none_if_not_initialize = false);
76 77
PyObject* ToPyObject(const paddle::experimental::Tensor& value,
                     ssize_t value_idx, PyObject* args, ssize_t arg_idx);
78 79 80
PyObject* ToPyObject(const std::vector<bool>& value);
PyObject* ToPyObject(const std::vector<int>& value);
PyObject* ToPyObject(const std::vector<int64_t>& value);
W
wanghuancoder 已提交
81
PyObject* ToPyObject(const std::vector<size_t>& value);
82 83
PyObject* ToPyObject(const std::vector<float>& value);
PyObject* ToPyObject(const std::vector<double>& value);
W
wanghuancoder 已提交
84
PyObject* ToPyObject(const std::vector<std::vector<size_t>>& value);
85 86
PyObject* ToPyObject(const std::vector<paddle::experimental::Tensor>& value,
                     bool return_py_none_if_not_initialize = false);
87
PyObject* ToPyObject(const platform::Place& value);
88
PyObject* ToPyObject(const framework::LoDTensor* value);
89
PyObject* ToPyObject(const phi::SelectedRows* value);
J
Jiabin Yang 已提交
90
PyObject* ToPyObject(const paddle::framework::proto::VarType::Type& dtype);
91
PyObject* ToPyObject(const paddle::framework::proto::VarType& type);
W
wanghuancoder 已提交
92
PyObject* ToPyObject(const void* value);
93 94
PyObject* ToPyObject(
    const std::unordered_map<std::string, std::vector<std::string>>& value);
95

96
template <typename Tuple, size_t N>
97
struct TupleTensorResult {
98
  static void Run(const Tuple& out, PyObject* result) {
99
    TupleTensorResult<Tuple, N - 1>::Run(out, result);
100 101
    PyTuple_SET_ITEM(result, N - 1, ToPyObject(std::get<N - 1>(out)));
  }
102 103 104 105 106 107 108 109 110 111 112

  static void Run(const Tuple& out, PyObject* result, ssize_t value_idx,
                  PyObject* args, ssize_t arg_idx) {
    TupleTensorResult<Tuple, N - 1>::Run(out, result, value_idx, args, arg_idx);
    if (N - 1 == value_idx) {
      PyTuple_SET_ITEM(result, N - 1, ToPyObject(std::get<N - 1>(out),
                                                 value_idx, args, arg_idx));
    } else {
      PyTuple_SET_ITEM(result, N - 1, ToPyObject(std::get<N - 1>(out)));
    }
  }
113 114 115
};

template <typename Tuple>
116
struct TupleTensorResult<Tuple, 1> {
117 118 119
  static void Run(const Tuple& out, PyObject* result) {
    PyTuple_SET_ITEM(result, 0, ToPyObject(std::get<0>(out)));
  }
120 121 122 123 124 125 126 127 128 129

  static void Run(const Tuple& out, PyObject* result, ssize_t value_idx,
                  PyObject* args, ssize_t arg_idx) {
    if (value_idx == 0) {
      PyTuple_SET_ITEM(result, 0,
                       ToPyObject(std::get<0>(out), value_idx, args, arg_idx));
    } else {
      PyTuple_SET_ITEM(result, 0, ToPyObject(std::get<0>(out)));
    }
  }
130 131 132 133 134 135 136
};

template <typename... Args>
PyObject* ToPyObject(const std::tuple<Args...>& out) {
  auto len = sizeof...(Args);
  PyObject* result = PyTuple_New(len);

137
  TupleTensorResult<decltype(out), sizeof...(Args)>::Run(out, result);
138 139 140 141

  return result;
}

142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
template <typename... Args>
PyObject* ToPyObject(const std::tuple<Args...>& out, ssize_t value_idx,
                     PyObject* args, ssize_t arg_idx) {
  // For inplace op, directly return the input PyObject of the inplace tensor.
  // [Parameter]
  // out: Outputs tuple after executing op.
  // value_idx: Index of inplace tensor in outputs tuple. Used to find the
  // output inplace tensor.
  // args: Input PyObject.
  // arg_idx: Index of inplace PyObject in input args. Used to find the input
  // inplace PyObject.
  auto len = sizeof...(Args);
  PyObject* result = PyTuple_New(len);

  TupleTensorResult<decltype(out), sizeof...(Args)>::Run(out, result, value_idx,
                                                         args, arg_idx);

  return result;
}

162 163 164 165
paddle::experimental::Scalar CastPyArg2Scalar(PyObject* obj,
                                              const std::string& op_type,
                                              ssize_t arg_pos);

166 167 168 169
paddle::experimental::Scalar CastNumpy2Scalar(PyObject* obj,
                                              const std::string& op_type,
                                              ssize_t arg_pos);

170 171 172
paddle::experimental::IntArray CastPyArg2IntArray(PyObject* obj,
                                                  const std::string& op_type,
                                                  ssize_t arg_pos);
173

174 175
paddle::Place CastPyArg2Place(PyObject* obj, const std::string& op_type,
                              ssize_t arg_pos);
176

177 178
paddle::DataType CastPyArg2DataType(PyObject* obj, const std::string& op_type,
                                    ssize_t arg_pos);
179

H
hong 已提交
180
paddle::optional<const paddle::experimental::Tensor&> GetOptionalTensorFromArgs(
181 182 183
    const std::string& op_type, const std::string& arg_name, PyObject* args,
    ssize_t arg_idx, bool dispensable = false);

184 185 186 187
paddle::experimental::Tensor& GetTensorFromArgs(const std::string& op_type,
                                                const std::string& arg_name,
                                                PyObject* args, ssize_t arg_idx,
                                                bool dispensable = false);
188

189
std::vector<paddle::experimental::Tensor> GetTensorListFromArgs(
190 191 192
    const std::string& op_type, const std::string& arg_name, PyObject* args,
    ssize_t arg_idx, bool dispensable = false);

193 194 195 196 197
paddle::experimental::Tensor* GetTensorPtrFromArgs(const std::string& op_type,
                                                   const std::string& arg_name,
                                                   PyObject* args,
                                                   ssize_t arg_idx,
                                                   bool dispensable = false);
198

199
std::vector<paddle::experimental::Tensor*> GetTensorPtrListFromArgs(
200 201 202
    const std::string& op_type, const std::string& arg_name, PyObject* args,
    ssize_t arg_idx, bool dispensable = false);

W
wanghuancoder 已提交
203 204 205 206 207 208 209 210
std::vector<paddle::experimental::Tensor*> GetTensorPtrListFromPyObject(
    PyObject* obj);

std::vector<paddle::experimental::Tensor> GetTensorListFromPyObject(
    PyObject* obj);

paddle::experimental::Tensor& GetTensorFromPyObject(PyObject* obj);

J
Jiabin Yang 已提交
211
// end of Slice related methods
212

0
0x45f 已提交
213 214 215
std::vector<paddle::framework::Scope*> GetScopePtrListFromArgs(
    const std::string& op_type, const std::string& arg_name, PyObject* args,
    ssize_t arg_idx, bool dispensable);
J
Jiabin Yang 已提交
216

217 218
}  // namespace pybind
}  // namespace paddle