eager_properties.cc 9.5 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 41 42 43 44 45 46
  // NOTE(dev): [why not use egr::Controller::Instance::GernerateUniqueName()?]
  // Beacause Controller must holder a tracer, but 'tensor.name' maybe called
  // everywhere such as static mode in @to_static, which means tracer is None.
  static egr::UniqueNameGenerator name_generator;
  if (self->tensor.name().empty()) {
    self->tensor.set_name(name_generator.Generate());
  }
47
  return ToPyObject(self->tensor.name());
48 49 50
  EAGER_CATCH_AND_THROW_RETURN_NULL
}

51 52
PyObject* tensor_properties_get_type(TensorObject* self, void* closure) {
  EAGER_TRY
53 54 55 56
  if (!self->tensor.defined()) {
    // be same to old dygraph
    return ToPyObject(paddle::framework::proto::VarType::LOD_TENSOR);
  }
57
  if (self->tensor.is_dense_tensor()) {
58
    return ToPyObject(paddle::framework::proto::VarType::LOD_TENSOR);
59 60
  } else if (self->tensor.is_selected_rows()) {
    return ToPyObject(paddle::framework::proto::VarType::SELECTED_ROWS);
61 62 63 64
  } else if (egr::IsVariableCompatTensor(self->tensor)) {
    return ToPyObject(static_cast<paddle::framework::proto::VarType::Type>(
        static_cast<const egr::VariableCompatTensor*>(self->tensor.impl().get())
            ->Type()));
65
  } else {
66
    RETURN_PY_NONE
67 68 69 70
  }
  EAGER_CATCH_AND_THROW_RETURN_NULL
}

W
wanghuancoder 已提交
71 72 73 74 75 76
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
}

77 78 79
int tensor_properties_set_name(TensorObject* self, PyObject* value,
                               void* closure) {
  EAGER_TRY
80
  self->tensor.set_name(CastPyArg2AttrString(value, 0));
81
  return 0;
0
0x45f 已提交
82
  EAGER_CATCH_AND_THROW_RETURN_NEG
83 84
}

85 86 87
PyObject* tensor_properties_get_stop_gradient(TensorObject* self,
                                              void* closure) {
  EAGER_TRY
88
  auto meta = egr::EagerUtils::autograd_meta(&self->tensor);
89 90 91 92
  return ToPyObject(meta->StopGradient());
  EAGER_CATCH_AND_THROW_RETURN_NULL
}

93 94
PyObject* tensor_properties_get_grad(TensorObject* self, void* closure) {
  EAGER_TRY
95 96
  VLOG(6) << "Get grad for tensor: " << self->tensor.name();
  auto meta = egr::EagerUtils::nullable_autograd_meta(self->tensor);
97
  if (meta && meta->Grad().initialized()) {
98
    return ToPyObject(meta->Grad());
99
  } else {
100
    RETURN_PY_NONE
101
  }
102 103 104
  EAGER_CATCH_AND_THROW_RETURN_NULL
}

105 106 107
int tensor_properties_set_grad(TensorObject* self, PyObject* value,
                               void* closure) {
  EAGER_TRY
108
  auto src = CastPyArg2Tensor(value, 0);
109
  PADDLE_ENFORCE(
110
      egr::egr_utils_api::IsLeafTensor(self->tensor),
111
      paddle::platform::errors::Fatal("Only leaf Tensor can be set grad."));
112 113 114 115 116 117 118 119

  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"));
C
Chen Weihang 已提交
120
  grad->copy_(src, self->tensor.place(), true);
121
  return 0;
0
0x45f 已提交
122
  EAGER_CATCH_AND_THROW_RETURN_NEG
123 124
}

125 126 127
int tensor_properties_set_stop_gradient(TensorObject* self, PyObject* value,
                                        void* closure) {
  EAGER_TRY
128
  auto meta = egr::EagerUtils::autograd_meta(&self->tensor);
129
  meta->SetStopGradient(CastPyArg2AttrBoolean(value, 0));
130 131 132
  if (!meta->GradNode()) {
    meta->SetGradNode(std::make_shared<egr::GradNodeAccumulation>(meta));
  }
133
  return 0;
0
0x45f 已提交
134
  EAGER_CATCH_AND_THROW_RETURN_NEG
135 136
}

137 138
PyObject* tensor_properties_get_persistable(TensorObject* self, void* closure) {
  EAGER_TRY
139
  auto meta = egr::EagerUtils::autograd_meta(&self->tensor);
140 141 142 143
  return ToPyObject(meta->Persistable());
  EAGER_CATCH_AND_THROW_RETURN_NULL
}

144 145 146
int tensor_properties_set_persistable(TensorObject* self, PyObject* value,
                                      void* closure) {
  EAGER_TRY
147
  auto meta = egr::EagerUtils::autograd_meta(&self->tensor);
148 149
  meta->SetPersistable(CastPyArg2AttrBoolean(value, 0));
  return 0;
0
0x45f 已提交
150
  EAGER_CATCH_AND_THROW_RETURN_NEG
151 152
}

153 154
PyObject* tensor_properties_get_shape(TensorObject* self, void* closure) {
  EAGER_TRY
155
  std::vector<int64_t> value;
156 157 158
  if (!self->tensor.defined()) {
    return ToPyObject(value);
  }
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
  if (egr::IsVariableCompatTensor(self->tensor)) {
    auto* var_tensor = static_cast<const egr::VariableCompatTensor*>(
        self->tensor.impl().get());
    if (var_tensor->IsType<paddle::framework::Vocab>()) {
      value.emplace_back(static_cast<int64_t>(
          var_tensor->Get<paddle::framework::Vocab>().size()));
    } else if (var_tensor->IsType<paddle::framework::Strings>()) {
      value.emplace_back(static_cast<int64_t>(
          var_tensor->Get<paddle::framework::Strings>().size()));
    } else {
      PADDLE_THROW(paddle::platform::errors::Unavailable(
          "VariableCompatTensor only support get shape from Vocab or "
          "Strings."));
    }
  } else {
    auto ddim = self->tensor.shape();
    size_t rank = static_cast<size_t>(ddim.size());
    value.resize(rank);
    for (size_t i = 0; i < rank; i++) {
      value[i] = ddim[i];
    }
180 181 182 183 184 185
  }

  return ToPyObject(value);
  EAGER_CATCH_AND_THROW_RETURN_NULL
}

186 187
PyObject* tensor_properties_get_place(TensorObject* self, void* closure) {
  EAGER_TRY
C
Chen Weihang 已提交
188
  return ToPyObject(self->tensor.place());
189 190 191
  EAGER_CATCH_AND_THROW_RETURN_NULL
}

192 193
PyObject* tensor_properties_get_place_str(TensorObject* self, void* closure) {
  EAGER_TRY
194
  std::stringstream ostr;
C
Chen Weihang 已提交
195
  ostr << self->tensor.place();
196 197 198 199
  return ToPyObject(ostr.str());
  EAGER_CATCH_AND_THROW_RETURN_NULL
}

200 201
PyObject* tensor_properties_get_dtype(TensorObject* self, void* closure) {
  EAGER_TRY
202 203 204 205
  if (!self->tensor.defined()) {
    // be same to old dygraph
    return ToPyObject(framework::proto::VarType::FP32);
  }
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
  if (egr::IsVariableCompatTensor(self->tensor)) {
    auto* var_tensor = static_cast<const egr::VariableCompatTensor*>(
        self->tensor.impl().get());
    if (var_tensor->IsType<paddle::framework::Vocab>()) {
      return ToPyObject(framework::proto::VarType::RAW);
    } else if (var_tensor->IsType<paddle::framework::Strings>()) {
      return ToPyObject(framework::proto::VarType::STRING);
    } else {
      PADDLE_THROW(paddle::platform::errors::Unavailable(
          "VariableCompatTensor only support get shape from Vocab or "
          "Strings."));
    }
  } else {
    return ToPyObject(
        paddle::framework::TransToProtoVarType(self->tensor.type()));
  }
222 223 224 225
  EAGER_CATCH_AND_THROW_RETURN_NULL
}

struct PyGetSetDef variable_properties[] = {
226 227 228 229 230 231 232 233 234 235
    {"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,
236 237
    // nullptr,
    //  nullptr},
238 239
    {"place", (getter)tensor_properties_get_place, nullptr, nullptr, nullptr},
    {"_place_str", (getter)tensor_properties_get_place_str, nullptr, nullptr,
240
     nullptr},
241 242
    {"dtype", (getter)tensor_properties_get_dtype, nullptr, nullptr, nullptr},
    {"type", (getter)tensor_properties_get_type, nullptr, nullptr, nullptr},
W
wanghuancoder 已提交
243
    {"is_leaf", (getter)tensor_properties_is_leaf, nullptr, nullptr, nullptr},
244 245
    {nullptr, nullptr, nullptr, nullptr, nullptr}};

J
Jack Zhou 已提交
246 247 248 249 250 251 252 253 254 255
// variable_properties for core.eager.StringTensor
struct PyGetSetDef string_tensor_variable_properties[] = {
    {"name", (getter)tensor_properties_get_name,
     (setter)tensor_properties_set_name, nullptr, nullptr},
    {"shape", (getter)tensor_properties_get_shape, nullptr, nullptr, nullptr},
    {"place", (getter)tensor_properties_get_place, nullptr, nullptr, nullptr},
    {"_place_str", (getter)tensor_properties_get_place_str, nullptr, nullptr,
     nullptr},
    {nullptr, nullptr, nullptr, nullptr, nullptr}};

256 257
}  // namespace pybind
}  // namespace paddle