test_conj_dev_api.cc 2.4 KB
Newer Older
C
chentianyu03 已提交
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 19
#include "paddle/phi/backends/cpu/cpu_context.h"
#include "paddle/phi/kernels/complex_kernel.h"
C
chentianyu03 已提交
20

21
#include "paddle/fluid/memory/allocation/allocator_facade.h"
22 23 24
#include "paddle/phi/api/lib/utils/allocator.h"
#include "paddle/phi/core/dense_tensor.h"
#include "paddle/phi/core/kernel_registry.h"
C
chentianyu03 已提交
25

26
namespace phi {
C
chentianyu03 已提交
27 28 29
namespace tests {

namespace framework = paddle::framework;
30
using DDim = phi::DDim;
C
chentianyu03 已提交
31 32 33

TEST(DEV_API, conj) {
  // 1. create tensor
34
  const auto alloc = std::make_unique<paddle::experimental::DefaultAllocator>(
C
chentianyu03 已提交
35
      paddle::platform::CPUPlace());
36 37 38 39
  phi::DenseTensor dense_x(alloc.get(),
                           phi::DenseTensorMeta(phi::DataType::COMPLEX64,
                                                phi::make_ddim({3, 4}),
                                                phi::DataLayout::NCHW));
C
chentianyu03 已提交
40

41 42
  auto* dense_x_data =
      dense_x.mutable_data<paddle::complex64>(paddle::platform::CPUPlace());
C
chentianyu03 已提交
43 44 45 46
  for (size_t i = 0; i < 12; ++i) {
    dense_x_data[i] = paddle::complex64(i * 1.0, i * 1.0);
  }

47
  phi::CPUContext dev_ctx;
W
Wilber 已提交
48 49 50 51
  dev_ctx.SetAllocator(paddle::memory::allocation::AllocatorFacade::Instance()
                           .GetAllocator(paddle::platform::CPUPlace())
                           .get());
  dev_ctx.Init();
C
chentianyu03 已提交
52 53

  // 2. test API
54
  auto out = phi::Conj<paddle::complex64>(dev_ctx, dense_x);
C
chentianyu03 已提交
55 56 57 58

  // 3. check result
  ASSERT_EQ(out.dims().size(), 2);
  ASSERT_EQ(out.numel(), 12);
59 60
  ASSERT_EQ(out.meta().dtype, phi::DataType::COMPLEX64);
  ASSERT_EQ(out.meta().layout, phi::DataLayout::NCHW);
C
chentianyu03 已提交
61 62 63 64 65 66 67 68 69 70

  auto actual_result = out.data<paddle::complex64>();

  for (size_t i = 0; i < 12; ++i) {
    ASSERT_NEAR(i * 1.0, actual_result[i].real, 1e-6f);
    ASSERT_NEAR(i * -1.0, actual_result[i].imag, 1e-6f);
  }
}

}  // namespace tests
71
}  // namespace phi