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

18
#include "paddle/pten/api/include/api.h"
19 20 21 22 23

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

24
namespace paddle {
25
namespace tests {
26 27

namespace framework = paddle::framework;
28
using DDim = pten::framework::DDim;
29 30 31 32

// TODO(chenweihang): Remove this test after the API is used in the dygraph
TEST(API, cast) {
  // 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
      pten::DenseTensorMeta(pten::DataType::FLOAT32,
38
                            pten::framework::make_ddim({3, 4}),
39
                            pten::DataLayout::NCHW));
40 41
  auto* dense_x_data =
      dense_x->mutable_data<float>(paddle::platform::CPUPlace());
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67

  for (int i = 0; i < dense_x->numel(); i++) {
    dense_x_data[i] = i;
  }

  paddle::experimental::Tensor x(dense_x);
  pten::DataType out_dtype = pten::DataType::FLOAT64;
  // 2. test API
  auto out = paddle::experimental::cast(x, out_dtype);

  // 3. check result
  std::vector<int> expect_shape = {3, 4};
  ASSERT_EQ(out.shape().size(), size_t(2));
  ASSERT_EQ(out.shape()[0], expect_shape[0]);
  ASSERT_EQ(out.shape()[1], expect_shape[1]);
  ASSERT_EQ(out.numel(), 12);
  ASSERT_EQ(out.is_cpu(), true);
  ASSERT_EQ(out.type(), pten::DataType::FLOAT64);
  ASSERT_EQ(out.layout(), pten::DataLayout::NCHW);
  ASSERT_EQ(out.initialized(), true);
  auto dense_out = std::dynamic_pointer_cast<pten::DenseTensor>(out.impl());
  auto* dense_out_data = dense_out->data<double>();
  for (int i = 0; i < dense_x->numel(); i++) {
    ASSERT_NEAR(dense_out_data[i], static_cast<double>(dense_x_data[i]), 1e-6f);
  }
}
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87

TEST(Tensor, cast) {
  auto x = paddle::experimental::full({3, 4}, 1.0, pten::DataType::FLOAT32);
  auto y = x.cast(pten::DataType::INT32);

  // check slice result
  ASSERT_EQ(y.dims().size(), 2);
  ASSERT_EQ(y.dims()[0], 3);
  ASSERT_EQ(y.dims()[1], 4);
  ASSERT_EQ(y.numel(), 12);
  ASSERT_EQ(y.is_cpu(), true);
  ASSERT_EQ(y.type(), pten::DataType::INT32);
  ASSERT_EQ(y.layout(), pten::DataLayout::NCHW);
  ASSERT_EQ(y.initialized(), true);
  for (int64_t i = 0; i < y.numel(); ++i) {
    ASSERT_EQ(y.mutable_data<int>()[i], 1);
  }
}

}  // namespace tests
88
}  // namespace paddle