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

#include <Python.h>
14
#include "paddle/phi/core/dense_tensor.h"
15 16 17 18 19 20
#include "pybind11/pybind11.h"
#include "pybind11/stl.h"
namespace paddle {
namespace pybind {

typedef struct {
21 22
  PyObject_HEAD paddle::experimental::Tensor tensor;
} TensorObject;
23

24
int TensorDtype2NumpyDtype(phi::DataType dtype);
25

26 27 28 29 30 31 32 33
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);
float CastPyArg2AttrFloat(PyObject* obj, ssize_t arg_pos);
std::string CastPyArg2AttrString(PyObject* obj, ssize_t arg_pos);
34
paddle::experimental::Tensor CastPyArg2Tensor(PyObject* obj, ssize_t arg_pos);
J
Jiabin Yang 已提交
35 36
std::shared_ptr<imperative::VarBase> CastPyArg2VarBase(PyObject* obj,
                                                       ssize_t arg_pos);
37 38
std::vector<paddle::experimental::Tensor> CastPyArg2VectorOfTensor(
    PyObject* obj, ssize_t arg_pos);
39
platform::Place CastPyArg2Place(PyObject* obj, ssize_t arg_pos);
40
framework::Tensor CastPyArg2FrameworkTensor(PyObject* obj, ssize_t arg_pos);
41 42
std::vector<framework::LoDTensor> CastPyArg2VectorOfTensorBase(PyObject* obj,
                                                               ssize_t arg_pos);
43
std::vector<int> CastPyArg2VectorOfInt(PyObject* obj, size_t arg_pos);
J
Jiabin Yang 已提交
44 45
framework::proto::VarType::Type CastPyArg2ProtoType(PyObject* obj,
                                                    ssize_t arg_pos);
46 47 48 49 50 51 52
PyObject* ToPyObject(int value);
PyObject* ToPyObject(bool value);
PyObject* ToPyObject(int64_t value);
PyObject* ToPyObject(float value);
PyObject* ToPyObject(double value);
PyObject* ToPyObject(const char* value);
PyObject* ToPyObject(const std::string& value);
53
PyObject* ToPyObject(const paddle::experimental::Tensor& value);
54 55 56 57 58
PyObject* ToPyObject(const std::vector<bool>& value);
PyObject* ToPyObject(const std::vector<int>& value);
PyObject* ToPyObject(const std::vector<int64_t>& value);
PyObject* ToPyObject(const std::vector<float>& value);
PyObject* ToPyObject(const std::vector<double>& value);
59
PyObject* ToPyObject(const std::vector<paddle::experimental::Tensor>& value);
60
PyObject* ToPyObject(const platform::Place& value);
61
PyObject* ToPyObject(const framework::LoDTensor* value);
J
Jiabin Yang 已提交
62
PyObject* ToPyObject(const paddle::framework::proto::VarType::Type& dtype);
63
PyObject* ToPyObject(const paddle::framework::proto::VarType& type);
W
wanghuancoder 已提交
64
PyObject* ToPyObject(const void* value);
65 66
PyObject* ToPyObject(
    const std::unordered_map<std::string, std::vector<std::string>>& value);
67

68
template <typename Tuple, size_t N>
69
struct TupleTensorResult {
70
  static void Run(const Tuple& out, PyObject* result) {
71
    TupleTensorResult<Tuple, N - 1>::Run(out, result);
72 73 74 75 76
    PyTuple_SET_ITEM(result, N - 1, ToPyObject(std::get<N - 1>(out)));
  }
};

template <typename Tuple>
77
struct TupleTensorResult<Tuple, 1> {
78 79 80 81 82 83 84 85 86 87
  static void Run(const Tuple& out, PyObject* result) {
    PyTuple_SET_ITEM(result, 0, ToPyObject(std::get<0>(out)));
  }
};

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

88
  TupleTensorResult<decltype(out), sizeof...(Args)>::Run(out, result);
89 90 91 92

  return result;
}

93 94 95 96
paddle::optional<paddle::experimental::Tensor> GetOptionalTensorFromArgs(
    const std::string& op_type, const std::string& arg_name, PyObject* args,
    ssize_t arg_idx, bool dispensable = false);

97 98 99 100
paddle::experimental::Tensor& GetTensorFromArgs(const std::string& op_type,
                                                const std::string& arg_name,
                                                PyObject* args, ssize_t arg_idx,
                                                bool dispensable = false);
101

102
std::vector<paddle::experimental::Tensor> GetTensorListFromArgs(
103 104 105
    const std::string& op_type, const std::string& arg_name, PyObject* args,
    ssize_t arg_idx, bool dispensable = false);

106 107 108 109 110
paddle::experimental::Tensor* GetTensorPtrFromArgs(const std::string& op_type,
                                                   const std::string& arg_name,
                                                   PyObject* args,
                                                   ssize_t arg_idx,
                                                   bool dispensable = false);
111

112
std::vector<paddle::experimental::Tensor*> GetTensorPtrListFromArgs(
113 114 115
    const std::string& op_type, const std::string& arg_name, PyObject* args,
    ssize_t arg_idx, bool dispensable = false);

J
Jiabin Yang 已提交
116 117
// end of Slice related methods

118 119
}  // namespace pybind
}  // namespace paddle