test_data_transform.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) 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 20 21
#include "paddle/phi/api/include/api.h"
#include "paddle/phi/common/complex.h"
#include "paddle/phi/core/compat/convert_utils.h"
#include "paddle/phi/core/dense_tensor.h"
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36

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
  auto x = paddle::experimental::full({3, 3},
                                      1.0,
                                      experimental::DataType::COMPLEX128,
                                      experimental::Backend::CPU);

  auto y = paddle::experimental::full(
      {3, 3}, 2.0, experimental::DataType::FLOAT32, experimental::Backend::CPU);

37
  std::vector<phi::dtype::complex<double>> sum(9, 6.0);
38 39 40 41 42 43 44 45 46

  // 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);
47 48
  ASSERT_EQ(out.type(), phi::DataType::COMPLEX128);
  ASSERT_EQ(out.layout(), phi::DataLayout::NCHW);
49 50
  ASSERT_EQ(out.initialized(), true);

51
  auto dense_out = std::dynamic_pointer_cast<phi::DenseTensor>(out.impl());
52 53 54

  for (size_t i = 0; i < 9; i++) {
    ASSERT_NEAR(sum[i].real,
55
                dense_out->data<phi::dtype::complex<double>>()[i].real,
56 57
                1e-6f);
    ASSERT_NEAR(sum[i].imag,
58
                dense_out->data<phi::dtype::complex<double>>()[i].imag,
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
                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(
      {3, 3}, 1.0, experimental::DataType::FLOAT64, experimental::Backend::CPU);

  auto y = paddle::experimental::full(
      {3, 3}, 2.0, experimental::DataType::FLOAT64, experimental::Backend::GPU);

  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);
82 83
  ASSERT_EQ(out.dtype(), phi::DataType::FLOAT64);
  ASSERT_EQ(out.layout(), phi::DataLayout::NCHW);
84 85
  ASSERT_EQ(out.initialized(), true);
  ASSERT_EQ(out.impl()->place(),
86
            phi::TransToPhiPlace(experimental::Backend::GPU));
87 88 89

  auto ref_out = experimental::copy_to(out, experimental::Backend::CPU, true);

90
  auto dense_out = std::dynamic_pointer_cast<phi::DenseTensor>(ref_out.impl());
91 92 93 94 95 96 97 98 99
  for (size_t i = 0; i < 9; i++) {
    ASSERT_NEAR(sum[i], dense_out->data<double>()[i], 1e-6f);
  }
}

#endif

}  // namespace tests
}  // namespace paddle