eager_utils.h 10.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 21 22
#include "paddle/fluid/framework/lod_tensor.h"
#include "paddle/fluid/framework/tensor.h"
#include "paddle/fluid/platform/place.h"
23 24
#include "paddle/phi/common/backend.h"
#include "paddle/phi/common/data_type.h"
25
#include "paddle/phi/common/int_array.h"
26
#include "paddle/phi/common/scalar.h"
27
#include "paddle/phi/core/dense_tensor.h"
28
#include "paddle/phi/core/selected_rows.h"
29 30 31
#include "pybind11/pybind11.h"
#include "pybind11/stl.h"
namespace paddle {
32
class CustomOpKernelContext;
0
0x45f 已提交
33 34 35
namespace framework {
class Scope;
}
36 37
namespace pybind {

38 39 40 41
#define RETURN_PY_NONE \
  Py_INCREF(Py_None);  \
  return Py_None;

42
int TensorDtype2NumpyDtype(phi::DataType dtype);
43

W
wanghuancoder 已提交
44 45
bool IsEagerTensor(PyObject* obj);

46 47 48 49 50 51
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 已提交
52
size_t CastPyArg2AttrSize_t(PyObject* obj, ssize_t arg_pos);
53 54
float CastPyArg2AttrFloat(PyObject* obj, ssize_t arg_pos);
std::string CastPyArg2AttrString(PyObject* obj, ssize_t arg_pos);
55 56
paddle::CustomOpKernelContext CastPyArg2CustomOpKernelContext(PyObject* obj,
                                                              ssize_t arg_pos);
57
paddle::experimental::Tensor CastPyArg2Tensor(PyObject* obj, ssize_t arg_pos);
J
Jiabin Yang 已提交
58 59
std::shared_ptr<imperative::VarBase> CastPyArg2VarBase(PyObject* obj,
                                                       ssize_t arg_pos);
60 61
std::vector<paddle::experimental::Tensor> CastPyArg2VectorOfTensor(
    PyObject* obj, ssize_t arg_pos);
62
platform::Place CastPyArg2Place(PyObject* obj, ssize_t arg_pos);
63
framework::Tensor CastPyArg2FrameworkTensor(PyObject* obj, ssize_t arg_pos);
64 65
std::vector<framework::LoDTensor> CastPyArg2VectorOfTensorBase(PyObject* obj,
                                                               ssize_t arg_pos);
66
std::vector<int> CastPyArg2VectorOfInt(PyObject* obj, size_t arg_pos);
W
wanghuancoder 已提交
67 68 69
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 已提交
70 71
framework::proto::VarType::Type CastPyArg2ProtoType(PyObject* obj,
                                                    ssize_t arg_pos);
72 73 74
std::unordered_map<std::wstring, int> CastPyArg2Vocab(PyObject* obj,
                                                      ssize_t arg_pos);
std::vector<std::string> CastPyArg2Strings(PyObject* obj, ssize_t arg_pos);
75

76
PyObject* ToPyObject(int value);
77
PyObject* ToPyObject(uint32_t value);
78 79
PyObject* ToPyObject(bool value);
PyObject* ToPyObject(int64_t value);
W
wanghuancoder 已提交
80
PyObject* ToPyObject(size_t value);
81 82 83 84
PyObject* ToPyObject(float value);
PyObject* ToPyObject(double value);
PyObject* ToPyObject(const char* value);
PyObject* ToPyObject(const std::string& value);
W
wanghuancoder 已提交
85 86
PyObject* ToPyObject(const paddle::experimental::Tensor& value,
                     bool return_py_none_if_not_initialize = false);
87
PyObject* ToPyObject(const paddle::experimental::Tensor& value,
88
                     PyObject* args,
89 90
                     const std::map<ssize_t, ssize_t>& inplace_var_idx_map);
PyObject* ToPyObject(PyObject* args, ssize_t arg_idx);
91 92 93
PyObject* ToPyObject(const std::vector<bool>& value);
PyObject* ToPyObject(const std::vector<int>& value);
PyObject* ToPyObject(const std::vector<int64_t>& value);
W
wanghuancoder 已提交
94
PyObject* ToPyObject(const std::vector<size_t>& value);
95 96
PyObject* ToPyObject(const std::vector<float>& value);
PyObject* ToPyObject(const std::vector<double>& value);
W
wanghuancoder 已提交
97
PyObject* ToPyObject(const std::vector<std::vector<size_t>>& value);
98 99
PyObject* ToPyObject(const std::vector<paddle::experimental::Tensor>& value,
                     bool return_py_none_if_not_initialize = false);
100
PyObject* ToPyObject(const platform::Place& value);
101
PyObject* ToPyObject(const framework::LoDTensor* value);
102
PyObject* ToPyObject(const phi::SelectedRows* value);
J
Jiabin Yang 已提交
103
PyObject* ToPyObject(const paddle::framework::proto::VarType::Type& dtype);
104
PyObject* ToPyObject(const paddle::framework::proto::VarType& type);
W
wanghuancoder 已提交
105
PyObject* ToPyObject(const void* value);
106 107
PyObject* ToPyObject(
    const std::unordered_map<std::string, std::vector<std::string>>& value);
108
PyObject* ToPyObject(const std::unordered_map<std::wstring, int>& value);
109

110
template <typename Tuple, size_t N>
111
struct TupleTensorResult {
112
  static void Run(const Tuple& out, PyObject* result) {
113
    TupleTensorResult<Tuple, N - 1>::Run(out, result);
114 115
    PyTuple_SET_ITEM(result, N - 1, ToPyObject(std::get<N - 1>(out)));
  }
116

117 118 119
  static void Run(const Tuple& out,
                  PyObject* result,
                  PyObject* args,
120 121 122 123
                  const std::map<ssize_t, ssize_t>& inplace_var_idx_map) {
    TupleTensorResult<Tuple, N - 1>::Run(
        out, result, args, inplace_var_idx_map);
    if (!inplace_var_idx_map.empty() && inplace_var_idx_map.count(N - 1)) {
124
      PyTuple_SET_ITEM(
125
          result, N - 1, ToPyObject(args, inplace_var_idx_map.at(N - 1)));
126 127 128 129
    } else {
      PyTuple_SET_ITEM(result, N - 1, ToPyObject(std::get<N - 1>(out)));
    }
  }
130 131 132
};

template <typename Tuple>
133
struct TupleTensorResult<Tuple, 1> {
134 135 136
  static void Run(const Tuple& out, PyObject* result) {
    PyTuple_SET_ITEM(result, 0, ToPyObject(std::get<0>(out)));
  }
137

138 139 140
  static void Run(const Tuple& out,
                  PyObject* result,
                  PyObject* args,
141 142 143
                  const std::map<ssize_t, ssize_t>& inplace_var_idx_map) {
    if (!inplace_var_idx_map.empty() && inplace_var_idx_map.count(0)) {
      PyTuple_SET_ITEM(result, 0, ToPyObject(args, inplace_var_idx_map.at(0)));
144 145 146 147
    } else {
      PyTuple_SET_ITEM(result, 0, ToPyObject(std::get<0>(out)));
    }
  }
148 149 150 151 152 153 154
};

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

155
  TupleTensorResult<decltype(out), sizeof...(Args)>::Run(out, result);
156 157 158 159

  return result;
}

160
template <typename... Args>
161 162
PyObject* ToPyObject(const std::tuple<Args...>& out,
                     PyObject* args,
163
                     const std::map<ssize_t, ssize_t>& inplace_var_idx_map) {
164 165 166 167
  // For inplace op, directly return the input PyObject of the inplace tensor.
  // [Parameter]
  // out: Outputs tuple after executing op.
  // args: Input PyObject.
168 169 170 171 172
  // inplace_var_idx_map: Index of Tensors in inplace_map, e.g. {{value_idx,
  // arg_idx}}.
  // - value_idx: Index of inplace tensor in outputs tuple. Used to find the
  // output inplace tensor.
  // - arg_idx: Index of inplace PyObject in input args. Used to find the input
173 174 175 176
  // inplace PyObject.
  auto len = sizeof...(Args);
  PyObject* result = PyTuple_New(len);

177
  TupleTensorResult<decltype(out), sizeof...(Args)>::Run(
178
      out, result, args, inplace_var_idx_map);
179 180 181 182

  return result;
}

183 184 185 186
paddle::experimental::Scalar CastPyArg2Scalar(PyObject* obj,
                                              const std::string& op_type,
                                              ssize_t arg_pos);

187 188 189 190
paddle::experimental::Scalar CastNumpy2Scalar(PyObject* obj,
                                              const std::string& op_type,
                                              ssize_t arg_pos);

191 192 193
paddle::experimental::IntArray CastPyArg2IntArray(PyObject* obj,
                                                  const std::string& op_type,
                                                  ssize_t arg_pos);
194

195 196
paddle::Place CastPyArg2Place(PyObject* obj,
                              const std::string& op_type,
197
                              ssize_t arg_pos);
198

199 200
paddle::DataType CastPyArg2DataType(PyObject* obj,
                                    const std::string& op_type,
201
                                    ssize_t arg_pos);
202

203
paddle::optional<paddle::experimental::Tensor> GetOptionalTensorFromArgs(
204 205 206 207 208
    const std::string& op_type,
    const std::string& arg_name,
    PyObject* args,
    ssize_t arg_idx,
    bool dispensable = false);
209

210 211
paddle::experimental::Tensor& GetTensorFromArgs(const std::string& op_type,
                                                const std::string& arg_name,
212 213
                                                PyObject* args,
                                                ssize_t arg_idx,
214
                                                bool dispensable = false);
215

216
std::vector<paddle::experimental::Tensor> GetTensorListFromArgs(
217 218 219 220 221
    const std::string& op_type,
    const std::string& arg_name,
    PyObject* args,
    ssize_t arg_idx,
    bool dispensable = false);
222

223 224 225 226 227
paddle::experimental::Tensor* GetTensorPtrFromArgs(const std::string& op_type,
                                                   const std::string& arg_name,
                                                   PyObject* args,
                                                   ssize_t arg_idx,
                                                   bool dispensable = false);
228

229
std::vector<paddle::experimental::Tensor*> GetTensorPtrListFromArgs(
230 231 232 233 234
    const std::string& op_type,
    const std::string& arg_name,
    PyObject* args,
    ssize_t arg_idx,
    bool dispensable = false);
235

W
wanghuancoder 已提交
236 237 238 239 240 241 242 243
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 已提交
244
// end of Slice related methods
245

0
0x45f 已提交
246
std::vector<paddle::framework::Scope*> GetScopePtrListFromArgs(
247 248 249 250 251
    const std::string& op_type,
    const std::string& arg_name,
    PyObject* args,
    ssize_t arg_idx,
    bool dispensable);
J
Jiabin Yang 已提交
252

253 254
}  // namespace pybind
}  // namespace paddle