test_data_transform.cc 3.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* Copyright (c) 2022 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 19
#include "paddle/phi/api/include/api.h"
#include "paddle/phi/common/complex.h"
20
#include "paddle/phi/common/place.h"
21 22
#include "paddle/phi/core/compat/convert_utils.h"
#include "paddle/phi/core/dense_tensor.h"
23 24 25 26 27 28 29 30 31 32
#include "paddle/phi/core/kernel_registry.h"

PD_DECLARE_KERNEL(full, CPU, ALL_LAYOUT);
PD_DECLARE_KERNEL(matmul, CPU, ALL_LAYOUT);

#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
PD_DECLARE_KERNEL(full, GPU, ALL_LAYOUT);
PD_DECLARE_KERNEL(matmul, GPU, ALL_LAYOUT);
PD_DECLARE_KERNEL(copy, GPU, ALL_LAYOUT);
#endif
33 34 35 36 37 38 39

namespace paddle {
namespace tests {

// TODO(chenweihang): Remove this test after the API is used in the dygraph
TEST(API, data_transform_same_place) {
  // 1. create tensor
40 41
  auto x =
      paddle::experimental::full({3, 3}, 1.0, DataType::COMPLEX128, CPUPlace());
42

43 44
  auto y =
      paddle::experimental::full({3, 3}, 2.0, DataType::FLOAT32, CPUPlace());
45

46
  std::vector<phi::dtype::complex<double>> sum(9, 6.0);
47 48 49 50 51 52 53 54 55

  // 2. test API
  auto out = paddle::experimental::matmul(x, y, false, false);

  // 3. check result
  ASSERT_EQ(out.dims().size(), 2);
  ASSERT_EQ(out.dims()[0], 3);
  ASSERT_EQ(out.dims()[1], 3);
  ASSERT_EQ(out.numel(), 9);
56 57
  ASSERT_EQ(out.type(), phi::DataType::COMPLEX128);
  ASSERT_EQ(out.layout(), phi::DataLayout::NCHW);
58 59
  ASSERT_EQ(out.initialized(), true);

60
  auto dense_out = std::dynamic_pointer_cast<phi::DenseTensor>(out.impl());
61 62 63

  for (size_t i = 0; i < 9; i++) {
    ASSERT_NEAR(sum[i].real,
64
                dense_out->data<phi::dtype::complex<double>>()[i].real,
65 66
                1e-6f);
    ASSERT_NEAR(sum[i].imag,
67
                dense_out->data<phi::dtype::complex<double>>()[i].imag,
68 69 70 71 72 73 74 75
                1e-6f);
  }
}

#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
TEST(Tensor, data_transform_diff_place) {
  // 1. create tensor
  auto x = paddle::experimental::full(
76
      {3, 3}, 1.0, experimental::DataType::FLOAT64, CPUPlace());
77 78

  auto y = paddle::experimental::full(
79
      {3, 3}, 2.0, experimental::DataType::FLOAT64, GPUPlace());
80 81 82 83 84 85 86 87 88 89 90

  std::vector<float> sum(9, 6.0);

  // 2. test API
  auto out = paddle::experimental::matmul(x, y, false, false);

  // 3. check result
  ASSERT_EQ(out.dims().size(), 2);
  ASSERT_EQ(out.dims()[0], 3);
  ASSERT_EQ(out.dims()[1], 3);
  ASSERT_EQ(out.numel(), 9);
91 92
  ASSERT_EQ(out.dtype(), phi::DataType::FLOAT64);
  ASSERT_EQ(out.layout(), phi::DataLayout::NCHW);
93
  ASSERT_EQ(out.initialized(), true);
94
  ASSERT_EQ(out.impl()->place(), phi::TransToPhiPlace(phi::Backend::GPU));
95

96
  auto ref_out = experimental::copy_to(out, CPUPlace(), true);
97

98
  auto dense_out = std::dynamic_pointer_cast<phi::DenseTensor>(ref_out.impl());
99 100 101 102 103 104 105 106 107
  for (size_t i = 0; i < 9; i++) {
    ASSERT_NEAR(sum[i], dense_out->data<double>()[i], 1e-6f);
  }
}

#endif

}  // namespace tests
}  // namespace paddle