assign_kernel.cc 6.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// Copyright (c) 2022 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.

#include "paddle/phi/kernels/assign_kernel.h"

17
#include "paddle/fluid/framework/tensor_util.h"
18
#include "paddle/phi/core/kernel_registry.h"
19
#include "paddle/phi/core/tensor_utils.h"
20 21 22 23
#include "paddle/utils/optional.h"

namespace phi {

C
chentianyu03 已提交
24
template <typename Context>
25 26 27
void AssignKernel(const Context& dev_ctx,
                  const DenseTensor& x,
                  DenseTensor* out) {
28
  paddle::framework::TensorCopy(x, x.place(), out);
C
chentianyu03 已提交
29 30
}

31
template <typename Context>
32
void AssignRawKernel(const Context& dev_ctx,
33
                     const paddle::optional<DenseTensor>& x,
34
                     DenseTensor* out) {
C
chentianyu03 已提交
35 36
  if (x) {
    if (!x->IsInitialized()) {
37 38 39
      return;
    }
    auto& x_tensor = *x.get_ptr();
40
    AssignKernel<Context>(dev_ctx, x_tensor, out);
41 42 43 44 45 46 47
  }
}

// Note: use `const paddle::optional<std::vector<const DenseTensor*>&> x`
// as input if needed
template <typename Context>
void AssignArrayKernel(const Context& dev_ctx,
48 49
                       const TensorArray& x,
                       TensorArray* out) {
50
  for (size_t i = 0; i < x.size(); ++i) {
51
    AssignKernel<Context>(dev_ctx, x[i], &out->at(i));
52 53 54
  }
}

55
template <typename T, typename Context>
C
Chen Weihang 已提交
56
typename std::enable_if<std::is_same<T, bool>::value>::type CopyVectorToTensor(
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
    const Context& dev_ctx,
    const std::vector<Scalar>& values,
    DenseTensor* out) {
  // If attribute value dtype is vector<bool>, it will be converted to
  // vector<int>. at the same time, we can not use vector<bool> to hold
  // the value, because the c++ use bit value to replace byte value.
  std::vector<int> assign_values;
  assign_values.reserve(values.size());
  for (const auto& val : values) {
    assign_values.emplace_back(val.to<int>());
  }
  paddle::framework::TensorFromVector(assign_values, dev_ctx, out);

  // use the array to replace to vector
  bool* array_ptr = new T[assign_values.size()];
  for (unsigned int i = 0; i < assign_values.size(); i++) {
    array_ptr[i] = static_cast<T>(assign_values[i]);
  }
  paddle::framework::TensorFromArray(
      array_ptr, assign_values.size(), dev_ctx, out);
  delete[] array_ptr;
}

template <typename T, typename Context>
C
Chen Weihang 已提交
81 82 83 84
typename std::enable_if<!std::is_same<T, bool>::value>::type CopyVectorToTensor(
    const Context& dev_ctx,
    const std::vector<Scalar>& values,
    DenseTensor* out) {
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
  std::vector<T> assign_values;
  assign_values.reserve(values.size());
  for (const auto& val : values) {
    assign_values.emplace_back(val.to<T>());
  }
  paddle::framework::TensorFromVector(assign_values, dev_ctx, out);
}

template <typename T, typename Context>
void AssignValueKernel(const Context& dev_ctx,
                       const std::vector<int>& shape,
                       DataType dtype,
                       const std::vector<Scalar>& values,
                       DenseTensor* out) {
  auto template_dtype = paddle::experimental::CppTypeToDataType<T>::Type();
  PADDLE_ENFORCE_EQ(
      dtype,
      template_dtype,
      phi::errors::InvalidArgument("Argument dtype mismatch for kernel dtype, "
                                   "argument dtype is %s, kernel dtype is %s.",
                                   dtype,
                                   template_dtype));
C
Chen Weihang 已提交
107
  CopyVectorToTensor<T>(dev_ctx, values, out);
108 109 110
  out->Resize(phi::make_ddim(shape));
}

111 112
}  // namespace phi

113 114 115
PD_REGISTER_GENERAL_KERNEL(
    assign, CPU, ALL_LAYOUT, phi::AssignKernel<phi::CPUContext>, ALL_DTYPE) {}

C
chentianyu03 已提交
116 117 118 119
PD_REGISTER_GENERAL_KERNEL(assign_raw,
                           CPU,
                           ALL_LAYOUT,
                           phi::AssignRawKernel<phi::CPUContext>,
120
                           ALL_DTYPE) {
121 122
  kernel->InputAt(0).SetBackend(phi::Backend::ALL_BACKEND);
}
123 124 125 126 127
PD_REGISTER_GENERAL_KERNEL(assign_array,
                           CPU,
                           ALL_LAYOUT,
                           phi::AssignArrayKernel<phi::CPUContext>,
                           ALL_DTYPE) {}
128 129 130 131 132 133 134 135
PD_REGISTER_KERNEL(assign_value,
                   CPU,
                   ALL_LAYOUT,
                   phi::AssignValueKernel,
                   bool,
                   int,
                   float,
                   int64_t) {}
136 137

#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
138 139
PD_REGISTER_GENERAL_KERNEL(
    assign, GPU, ALL_LAYOUT, phi::AssignKernel<phi::GPUContext>, ALL_DTYPE) {}
C
chentianyu03 已提交
140 141 142 143
PD_REGISTER_GENERAL_KERNEL(assign_raw,
                           GPU,
                           ALL_LAYOUT,
                           phi::AssignRawKernel<phi::GPUContext>,
144
                           ALL_DTYPE) {
145 146
  kernel->InputAt(0).SetBackend(phi::Backend::ALL_BACKEND);
}
147 148 149 150 151
PD_REGISTER_GENERAL_KERNEL(assign_array,
                           GPU,
                           ALL_LAYOUT,
                           phi::AssignArrayKernel<phi::GPUContext>,
                           ALL_DTYPE) {}
152 153 154 155 156 157 158 159
PD_REGISTER_KERNEL(assign_value,
                   GPU,
                   ALL_LAYOUT,
                   phi::AssignValueKernel,
                   bool,
                   int,
                   float,
                   int64_t) {}
160
#endif
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177

#ifdef PADDLE_WITH_XPU
PD_REGISTER_GENERAL_KERNEL(
    assign, XPU, ALL_LAYOUT, phi::AssignKernel<phi::XPUContext>, ALL_DTYPE) {}
PD_REGISTER_GENERAL_KERNEL(assign_raw,
                           XPU,
                           ALL_LAYOUT,
                           phi::AssignRawKernel<phi::XPUContext>,
                           ALL_DTYPE) {
  kernel->InputAt(0).SetBackend(phi::Backend::ALL_BACKEND);
}
PD_REGISTER_GENERAL_KERNEL(assign_array,
                           XPU,
                           ALL_LAYOUT,
                           phi::AssignArrayKernel<phi::XPUContext>,
                           ALL_DTYPE) {}
#endif