test_empty_api.cc 4.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
/* 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. */

#include <gtest/gtest.h>
#include <memory>

#include "paddle/pten/api/include/api.h"

#include "paddle/pten/api/lib/utils/allocator.h"
#include "paddle/pten/core/dense_tensor.h"
#include "paddle/pten/core/kernel_registry.h"

namespace paddle {
namespace tests {

namespace framework = paddle::framework;
using DDim = paddle::framework::DDim;

// TODO(chenweihang): Remove this test after the API is used in the dygraph
TEST(API, empty_like) {
  // 1. create tensor
33
  const auto alloc = std::make_unique<paddle::experimental::DefaultAllocator>(
34 35
      paddle::platform::CPUPlace());
  auto dense_x = std::make_shared<pten::DenseTensor>(
36
      alloc.get(),
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
      pten::DenseTensorMeta(pten::DataType::FLOAT32,
                            framework::make_ddim({3, 2}),
                            pten::DataLayout::NCHW));

  paddle::experimental::Tensor x(dense_x);

  // 2. test API
  auto out = paddle::experimental::empty_like(x, pten::DataType::FLOAT32);

  // 3. check result
  ASSERT_EQ(out.dims().size(), 2);
  ASSERT_EQ(out.dims()[0], 3);
  ASSERT_EQ(out.numel(), 6);
  ASSERT_EQ(out.is_cpu(), true);
  ASSERT_EQ(out.type(), pten::DataType::FLOAT32);
  ASSERT_EQ(out.layout(), pten::DataLayout::NCHW);
  ASSERT_EQ(out.initialized(), true);
}

TEST(API, empty1) {
  // 1. create tensor
58
  const auto alloc = std::make_unique<paddle::experimental::DefaultAllocator>(
59 60 61
      paddle::platform::CPUPlace());

  auto dense_shape = std::make_shared<pten::DenseTensor>(
62
      alloc.get(),
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
      pten::DenseTensorMeta(pten::DataType::INT64,
                            framework::make_ddim({2}),
                            pten::DataLayout::NCHW));
  auto* shape_data = dense_shape->mutable_data<int64_t>();
  shape_data[0] = 2;
  shape_data[1] = 3;

  paddle::experimental::Tensor tensor_shape(dense_shape);

  // 2. test API
  auto out = paddle::experimental::empty(tensor_shape, pten::DataType::FLOAT32);

  // 3. check result
  ASSERT_EQ(out.shape().size(), 2UL);
  ASSERT_EQ(out.shape()[0], 2);
  ASSERT_EQ(out.numel(), 6);
  ASSERT_EQ(out.is_cpu(), true);
  ASSERT_EQ(out.type(), pten::DataType::FLOAT32);
  ASSERT_EQ(out.layout(), pten::DataLayout::NCHW);
  ASSERT_EQ(out.initialized(), true);
}

TEST(API, empty2) {
86
  const auto alloc = std::make_unique<paddle::experimental::DefaultAllocator>(
87 88 89
      paddle::platform::CPUPlace());

  auto dense_scalar = std::make_shared<pten::DenseTensor>(
90
      alloc.get(),
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
      pten::DenseTensorMeta(pten::DataType::INT32,
                            framework::make_ddim({1}),
                            pten::DataLayout::NCHW));
  dense_scalar->mutable_data<int32_t>()[0] = 2;

  paddle::experimental::Tensor shape_scalar1(dense_scalar);
  paddle::experimental::Tensor shape_scalar2(dense_scalar);
  std::vector<paddle::experimental::Tensor> list_shape{shape_scalar1,
                                                       shape_scalar2};

  auto out = paddle::experimental::empty(list_shape, pten::DataType::FLOAT32);

  ASSERT_EQ(out.shape().size(), 2UL);
  ASSERT_EQ(out.shape()[0], 2);
  ASSERT_EQ(out.numel(), 4);
  ASSERT_EQ(out.is_cpu(), true);
  ASSERT_EQ(out.type(), pten::DataType::FLOAT32);
  ASSERT_EQ(out.layout(), pten::DataLayout::NCHW);
  ASSERT_EQ(out.initialized(), true);
}

TEST(API, empty3) {
  std::vector<int64_t> vector_shape{2, 3};

  auto out = paddle::experimental::empty(vector_shape, pten::DataType::INT32);

  ASSERT_EQ(out.shape().size(), 2UL);
  ASSERT_EQ(out.shape()[0], 2);
  ASSERT_EQ(out.numel(), 6);
  ASSERT_EQ(out.is_cpu(), true);
  ASSERT_EQ(out.type(), pten::DataType::INT32);
  ASSERT_EQ(out.layout(), pten::DataLayout::NCHW);
  ASSERT_EQ(out.initialized(), true);
}

}  // namespace tests
}  // namespace paddle