eager_properties.cc 6.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* 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. */
// disable numpy compile error
#include <Python.h>

#include <string>
#include <vector>

17
#include "paddle/fluid/eager/accumulation/accumulation_node.h"
18
#include "paddle/fluid/eager/api/all.h"
19
#include "paddle/fluid/eager/api/utils/tensor_utils.h"
20 21 22 23 24 25 26 27
#include "paddle/fluid/eager/autograd_meta.h"
#include "paddle/fluid/eager/utils.h"
#include "paddle/fluid/memory/allocation/allocator.h"
#include "paddle/fluid/memory/memcpy.h"
#include "paddle/fluid/platform/enforce.h"
#include "paddle/fluid/pybind/eager.h"
#include "paddle/fluid/pybind/eager_utils.h"
#include "paddle/fluid/pybind/exception.h"
28 29 30
#include "paddle/phi/common/data_type.h"
#include "paddle/phi/core/compat/convert_utils.h"
#include "paddle/phi/core/dense_tensor.h"
31 32 33 34 35
#pragma GCC diagnostic ignored "-Wwrite-strings"

namespace paddle {
namespace pybind {

36
extern PyTypeObject* p_tensor_type;
37

38 39
PyObject* tensor_properties_get_name(TensorObject* self, void* closure) {
  EAGER_TRY
40
  return ToPyObject(self->tensor.name());
41 42 43
  EAGER_CATCH_AND_THROW_RETURN_NULL
}

44 45
PyObject* tensor_properties_get_type(TensorObject* self, void* closure) {
  EAGER_TRY
46
  if (self->tensor.is_dense_tensor()) {
47 48 49 50 51 52 53 54
    return ToPyObject(paddle::framework::proto::VarType::LOD_TENSOR);
  } else {
    Py_INCREF(Py_None);
    return Py_None;
  }
  EAGER_CATCH_AND_THROW_RETURN_NULL
}

W
wanghuancoder 已提交
55 56 57 58 59 60
PyObject* tensor_properties_is_leaf(TensorObject* self, void* closure) {
  EAGER_TRY
  return ToPyObject(egr::egr_utils_api::IsLeafTensor(self->tensor));
  EAGER_CATCH_AND_THROW_RETURN_NULL
}

61 62 63
int tensor_properties_set_name(TensorObject* self, PyObject* value,
                               void* closure) {
  EAGER_TRY
64
  self->tensor.set_name(CastPyArg2AttrString(value, 0));
65 66 67 68
  return 0;
  EAGER_CATCH_AND_THROW_RETURN_ZERO
}

69 70 71
PyObject* tensor_properties_get_stop_gradient(TensorObject* self,
                                              void* closure) {
  EAGER_TRY
72
  auto meta = egr::EagerUtils::autograd_meta(&self->tensor);
73 74 75 76
  return ToPyObject(meta->StopGradient());
  EAGER_CATCH_AND_THROW_RETURN_NULL
}

77 78
PyObject* tensor_properties_get_grad(TensorObject* self, void* closure) {
  EAGER_TRY
79 80
  VLOG(6) << "Get grad for tensor: " << self->tensor.name();
  auto meta = egr::EagerUtils::nullable_autograd_meta(self->tensor);
81
  if (meta && meta->Grad().initialized()) {
82
    return ToPyObject(meta->Grad());
83
  } else {
84 85
    Py_INCREF(Py_None);
    return Py_None;
86
  }
87 88 89
  EAGER_CATCH_AND_THROW_RETURN_NULL
}

90 91 92
int tensor_properties_set_grad(TensorObject* self, PyObject* value,
                               void* closure) {
  EAGER_TRY
93
  auto src = CastPyArg2Tensor(value, 0);
94
  PADDLE_ENFORCE(
95
      egr::egr_utils_api::IsLeafTensor(self->tensor),
96
      paddle::platform::errors::Fatal("Only leaf Tensor can be set grad."));
97 98 99 100 101 102 103 104

  paddle::experimental::Tensor* grad =
      egr::EagerUtils::mutable_grad(self->tensor);
  PADDLE_ENFORCE(grad != nullptr,
                 paddle::platform::errors::Fatal(
                     "Detected NULL grad"
                     "Please check if you have manually cleared"
                     "the grad inside autograd_meta"));
105
  grad->copy_(src, self->tensor.inner_place(), true);
106 107 108 109
  return 0;
  EAGER_CATCH_AND_THROW_RETURN_ZERO
}

110 111 112
int tensor_properties_set_stop_gradient(TensorObject* self, PyObject* value,
                                        void* closure) {
  EAGER_TRY
113
  auto meta = egr::EagerUtils::autograd_meta(&self->tensor);
114
  meta->SetStopGradient(CastPyArg2AttrBoolean(value, 0));
115 116 117
  if (!meta->GradNode()) {
    meta->SetGradNode(std::make_shared<egr::GradNodeAccumulation>(meta));
  }
118 119 120 121
  return 0;
  EAGER_CATCH_AND_THROW_RETURN_ZERO
}

122 123
PyObject* tensor_properties_get_persistable(TensorObject* self, void* closure) {
  EAGER_TRY
124
  auto meta = egr::EagerUtils::autograd_meta(&self->tensor);
125 126 127 128
  return ToPyObject(meta->Persistable());
  EAGER_CATCH_AND_THROW_RETURN_NULL
}

129 130 131
int tensor_properties_set_persistable(TensorObject* self, PyObject* value,
                                      void* closure) {
  EAGER_TRY
132
  auto meta = egr::EagerUtils::autograd_meta(&self->tensor);
133 134 135 136 137
  meta->SetPersistable(CastPyArg2AttrBoolean(value, 0));
  return 0;
  EAGER_CATCH_AND_THROW_RETURN_ZERO
}

138 139
PyObject* tensor_properties_get_shape(TensorObject* self, void* closure) {
  EAGER_TRY
140
  auto ddim = self->tensor.shape();
141 142 143 144 145 146 147 148 149 150 151
  std::vector<int64_t> value;
  size_t rank = static_cast<size_t>(ddim.size());
  value.resize(rank);
  for (size_t i = 0; i < rank; i++) {
    value[i] = ddim[i];
  }

  return ToPyObject(value);
  EAGER_CATCH_AND_THROW_RETURN_NULL
}

152 153
PyObject* tensor_properties_get_place(TensorObject* self, void* closure) {
  EAGER_TRY
154
  return ToPyObject(self->tensor.inner_place());
155 156 157
  EAGER_CATCH_AND_THROW_RETURN_NULL
}

158 159
PyObject* tensor_properties_get_place_str(TensorObject* self, void* closure) {
  EAGER_TRY
160
  std::stringstream ostr;
161
  ostr << self->tensor.inner_place();
162 163 164 165
  return ToPyObject(ostr.str());
  EAGER_CATCH_AND_THROW_RETURN_NULL
}

166 167
PyObject* tensor_properties_get_dtype(TensorObject* self, void* closure) {
  EAGER_TRY
168 169
  return ToPyObject(
      paddle::framework::TransToProtoVarType(self->tensor.type()));
170 171 172 173
  EAGER_CATCH_AND_THROW_RETURN_NULL
}

struct PyGetSetDef variable_properties[] = {
174 175 176 177 178 179 180 181 182 183
    {"grad", (getter)tensor_properties_get_grad,
     (setter)tensor_properties_set_grad, nullptr, nullptr},
    {"name", (getter)tensor_properties_get_name,
     (setter)tensor_properties_set_name, nullptr, nullptr},
    {"stop_gradient", (getter)tensor_properties_get_stop_gradient,
     (setter)tensor_properties_set_stop_gradient, nullptr, nullptr},
    {"persistable", (getter)tensor_properties_get_persistable,
     (setter)tensor_properties_set_persistable, nullptr, nullptr},
    {"shape", (getter)tensor_properties_get_shape, nullptr, nullptr, nullptr},
    // {"is_leaf", (getter)tensor_properties_get_is_leaf, nullptr,
184 185
    // nullptr,
    //  nullptr},
186 187
    {"place", (getter)tensor_properties_get_place, nullptr, nullptr, nullptr},
    {"_place_str", (getter)tensor_properties_get_place_str, nullptr, nullptr,
188
     nullptr},
189 190
    {"dtype", (getter)tensor_properties_get_dtype, nullptr, nullptr, nullptr},
    {"type", (getter)tensor_properties_get_type, nullptr, nullptr, nullptr},
W
wanghuancoder 已提交
191
    {"is_leaf", (getter)tensor_properties_is_leaf, nullptr, nullptr, nullptr},
192 193 194 195
    {nullptr, nullptr, nullptr, nullptr, nullptr}};

}  // namespace pybind
}  // namespace paddle