creation.cc 4.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* 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. */

15
#include "paddle/pten/api/include/creation.h"
16 17 18 19 20

#include <memory>

#include "glog/logging.h"

21
#include "paddle/pten/api/lib/api_registry.h"
22 23
#include "paddle/pten/api/lib/kernel_dispatch.h"
#include "paddle/pten/api/lib/utils/allocator.h"
24
#include "paddle/pten/core/kernel_registry.h"
25
#include "paddle/pten/include/core.h"
26
#include "paddle/pten/include/infermeta.h"
27

28 29 30 31 32 33
PT_DECLARE_MODULE(CreationCPU);

#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
PT_DECLARE_MODULE(CreationCUDA);
#endif

34 35 36
namespace paddle {
namespace experimental {

37
PD_DLL_DECL Tensor full(const ScalarArray& shape,
38 39 40 41
                        const Scalar& value,
                        DataType dtype,
                        Backend backend,
                        DataLayout layout) {
42 43 44
  // 1. Get kernel signature and kernel
  pten::KernelKey kernel_key{backend, layout, dtype};
  auto kernel = pten::KernelFactory::Instance().SelectKernelOrThrowError(
45
      "fill_constant", kernel_key);
46 47 48

  // 2. Get Device Context
  auto* dev_ctx = GetDeviceContextByBackend(kernel_key.backend());
49
  auto kernel_context = pten::KernelContext(dev_ctx);
50 51

  // 3. Auto data transform
52 53
  kernel_context.EmplaceBackAttr(pten::ScalarArray(shape));
  kernel_context.EmplaceBackAttr(pten::Scalar(value));
54

55 56
  // 4. InferMeta
  auto out_meta = pten::FullInferMeta(shape, dtype, layout);
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72

  // 5. Prepare outputs
  const auto allocator =
      std::make_shared<paddle::experimental::DefaultAllocator>(
          pten::TransToFluidPlace(kernel_key.backend()));
  auto dense_out = std::make_shared<pten::DenseTensor>(allocator, out_meta);
  kernel_context.EmplaceBackOutput(dense_out);
  Tensor out;
  out.set_impl(dense_out);

  // 6. Call kernel
  kernel(&kernel_context);

  return out;
}

73 74 75 76 77
PD_DLL_DECL Tensor full_like(const Tensor& x,
                             const Scalar& value,
                             DataType dtype,
                             Backend backend,
                             DataLayout layout) {
78 79 80
  // 1. Get kernel signature and kernel
  auto kernel_key_set = ParseKernelKeyByInputArgs(x);
  auto kernel_key = kernel_key_set.GetHigestPriorityKernelKey();
81 82 83 84 85 86 87 88

  DataType kernel_data_type =
      dtype == DataType::UNDEFINED ? kernel_key.dtype() : dtype;
  Backend kernel_backend =
      backend == Backend::UNDEFINED ? kernel_key.backend() : backend;
  DataLayout kernel_layout =
      layout == DataLayout::UNDEFINED ? kernel_key.layout() : layout;

89
  auto kernel = pten::KernelFactory::Instance().SelectKernelOrThrowError(
90
      "fill_any_like", {kernel_backend, kernel_layout, kernel_data_type});
91 92 93

  // 2. Get Device Context
  auto* dev_ctx = GetDeviceContextByBackend(kernel_key.backend());
94
  auto kernel_context = pten::KernelContext(dev_ctx);
95 96 97

  // 3. Auto data transform
  auto dense_x = std::dynamic_pointer_cast<pten::DenseTensor>(x.impl());
98
  kernel_context.EmplaceBackAttr(pten::Scalar(value));
99

100 101
  // 4. InferMeta
  auto out_meta = FullLikeInferMeta(dense_x->meta(), dtype, layout);
102 103 104 105 106

  // 5. Prepare outputs
  Tensor out;
  const auto allocator =
      std::make_shared<paddle::experimental::DefaultAllocator>(
107
          pten::TransToFluidPlace(kernel_backend));
108 109 110 111 112 113 114 115 116 117
  auto dense_out = std::make_shared<pten::DenseTensor>(allocator, out_meta);
  kernel_context.EmplaceBackOutput(dense_out);
  out.set_impl(dense_out);

  // 6. Call kernel
  kernel(&kernel_context);

  return out;
}

118 119 120 121
PD_DLL_DECL Tensor ones_like(const Tensor& x,
                             DataType dtype,
                             Backend backend,
                             DataLayout layout) {
122
  return full_like(x, 1, dtype, backend, layout);
123 124
}

125 126 127 128
PD_DLL_DECL Tensor zeros_like(const Tensor& x,
                              DataType dtype,
                              Backend backend,
                              DataLayout layout) {
129
  return full_like(x, 0, dtype, backend, layout);
130 131 132 133
}

}  // namespace experimental
}  // namespace paddle
134 135

PT_REGISTER_API(Creation);