test_to_api.cc 3.2 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>

C
Chen Weihang 已提交
18
#include "paddle/pten/api/include/manual_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 26 27
namespace tests {

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

paddle::experimental::Tensor CreateInputTensor() {
31
  const auto alloc = std::make_unique<paddle::experimental::DefaultAllocator>(
32 33
      paddle::platform::CPUPlace());
  auto dense_x = std::make_shared<pten::DenseTensor>(
34
      alloc.get(),
35
      pten::DenseTensorMeta(pten::DataType::INT64,
36
                            pten::framework::make_ddim({3, 4}),
37
                            pten::DataLayout::NCHW));
38 39
  auto* dense_x_data =
      dense_x->mutable_data<int64_t>(paddle::platform::CPUPlace());
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61

  for (int64_t i = 0; i < 12; ++i) {
    dense_x_data[i] = i;
  }

  return paddle::experimental::Tensor(dense_x);
}

void CheckOutputResult(const paddle::experimental::Tensor& out) {
  ASSERT_EQ(out.dims().size(), 2);
  ASSERT_EQ(out.dims()[0], 3);
  ASSERT_EQ(out.dims()[1], 4);
  ASSERT_EQ(out.is_cpu(), true);
  ASSERT_EQ(out.type(), pten::DataType::INT64);
  ASSERT_EQ(out.layout(), pten::DataLayout::NCHW);
  ASSERT_EQ(out.initialized(), true);

  for (int64_t i = 0; i < 12; ++i) {
    ASSERT_EQ(out.data<int64_t>()[i], i);
  }
}

62
TEST(API, copy_to) {
63 64 65 66 67
  // 1. create tensor
  auto x = CreateInputTensor();

// 2. test API
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
68
  auto tmp = paddle::experimental::copy_to(x, pten::Backend::GPU, false);
69
  auto out = paddle::experimental::copy_to(tmp, pten::Backend::CPU, true);
70
#else
71
  auto out = paddle::experimental::copy_to(x, pten::Backend::CPU, false);
72 73 74 75 76 77
#endif

  // 3. check result
  CheckOutputResult(out);
}

78
TEST(Tensor, copy_to) {
79 80 81 82 83
  // 1. create tensor
  auto x = CreateInputTensor();

// 2. test API
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
84
  auto tmp = x.copy_to(pten::Backend::GPU, false);
85
  auto out = tmp.copy_to(pten::Backend::CPU, true);
86
#else
87
  auto out = x.copy_to(pten::Backend::CPU, false);
88 89 90 91 92 93
#endif

  // 3. check result
  CheckOutputResult(out);
}

94
TEST(Tensor, old_copy_to) {
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
  // 1. create tensor
  auto x = CreateInputTensor();

// 2. test API
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
  auto tmp = x.copy_to<int64_t>(paddle::PlaceType::kGPU);
  auto out = tmp.copy_to<int64_t>(paddle::PlaceType::kCPU);
#else
  auto out = x.copy_to<int64_t>(paddle::PlaceType::kCPU);
#endif

  // 3. check result
  CheckOutputResult(out);
}

}  // namespace tests
111
}  // namespace paddle