test_copy_dev_api.cc 2.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* 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/core/kernel_registry.h"
19
#include "paddle/pten/kernels/copy_kernel.h"
20

21
#include "paddle/pten/api/lib/utils/allocator.h"
22 23
#include "paddle/pten/core/dense_tensor.h"

24 25 26
namespace pten {
namespace tests {

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

// TODO(YuanRisheng): This TEST file need to be refactored after 'copy' realized
31
// in 'paddle/api'
32
TEST(DEV_API, copy) {
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
  // 1. create tensor
  const auto alloc = std::make_shared<paddle::experimental::DefaultAllocator>(
      paddle::platform::CPUPlace());
  auto dense_src = std::make_shared<pten::DenseTensor>(
      alloc,
      pten::DenseTensorMeta(pten::DataType::FLOAT32,
                            framework::make_ddim({2, 3}),
                            pten::DataLayout::NCHW));
  auto* dense_x_data = dense_src->mutable_data<float>();

  auto dense_dst = std::make_shared<pten::DenseTensor>(
      alloc,
      pten::DenseTensorMeta(pten::DataType::FLOAT32,
                            framework::make_ddim({2, 3}),
                            pten::DataLayout::NCHW));

  for (size_t i = 0; i < 2; ++i) {
    for (size_t j = 0; j < 3; ++j) {
      dense_x_data[i * 3 + j] = (i * 3 + j) * 1.0;
    }
  }
  const auto& a = paddle::platform::CPUPlace();
  std::cout << typeid(a).name() << std::endl;
  // 2. test API
  auto& pool = paddle::platform::DeviceContextPool::Instance();
  auto* dev_ctx = pool.GetByPlace(paddle::platform::CPUPlace());
59
  pten::Copy(*dev_ctx, *(dense_src.get()), false, dense_dst.get());
60 61 62 63 64 65

  // 3. check result
  for (int64_t i = 0; i < dense_src->numel(); i++) {
    ASSERT_EQ(dense_src->data<float>()[i], dense_dst->data<float>()[i]);
  }
}
66 67 68

}  // namespace tests
}  // namespace pten