test_scale_api.cc 2.9 KB
Newer Older
C
Chen Weihang 已提交
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
#include "paddle/phi/api/include/api.h"
C
Chen Weihang 已提交
19

20 21
#include "paddle/phi/api/lib/utils/allocator.h"
#include "paddle/phi/core/dense_tensor.h"
22
#include "paddle/phi/core/kernel_registry.h"
23
#include "paddle/phi/core/selected_rows.h"
C
Chen Weihang 已提交
24

25 26 27
PD_DECLARE_KERNEL(full, CPU, ALL_LAYOUT);
PD_DECLARE_KERNEL(scale, CPU, ALL_LAYOUT);
PD_DECLARE_KERNEL(scale_sr, CPU, ALL_LAYOUT);
28
PD_DECLARE_KERNEL(copy, CPU, ALL_LAYOUT);
29

C
Chen Weihang 已提交
30 31 32 33
namespace paddle {
namespace tests {

namespace framework = paddle::framework;
34
using DDim = phi::DDim;
C
Chen Weihang 已提交
35

36
void CheckScaleResult(const experimental::Tensor* out) {
C
Chen Weihang 已提交
37 38 39 40 41
  ASSERT_EQ(out->dims().size(), 2);
  ASSERT_EQ(out->dims()[0], 3);
  ASSERT_EQ(out->dims()[1], 4);
  ASSERT_EQ(out->numel(), 12);
  ASSERT_EQ(out->is_cpu(), true);
42 43
  ASSERT_EQ(out->type(), phi::DataType::FLOAT32);
  ASSERT_EQ(out->layout(), phi::DataLayout::NCHW);
C
Chen Weihang 已提交
44 45
  ASSERT_EQ(out->initialized(), true);
  for (int64_t i = 0; i < out->numel(); ++i) {
46
    ASSERT_NEAR(3.0, out->data<float>()[i], 1e-6f);
C
Chen Weihang 已提交
47 48 49 50 51
  }
}

TEST(API, scale) {
  // 1. check `scale` is float value
52
  auto x = experimental::full({3, 4}, 1.0, phi::DataType::FLOAT32);
C
Chen Weihang 已提交
53 54 55 56
  auto out1 = experimental::scale(x, 2.0, 1.0, true);
  CheckScaleResult(&out1);

  // 2. check `scale` is Tensor with shape [1]
57
  auto scale = experimental::full({1}, 2.0, phi::DataType::FLOAT32);
C
Chen Weihang 已提交
58 59 60 61
  auto out2 = experimental::scale(x, scale, 1.0, true);
  CheckScaleResult(&out2);
}

62 63 64 65
TEST(API, scale_sr) {
  // 1. check `scale` is float value
  std::vector<int64_t> rows{0, 4, 7};
  int64_t height = 10;
66 67 68
  auto selected_rows = std::make_shared<phi::SelectedRows>(rows, height);
  auto dense_tensor = std::dynamic_pointer_cast<phi::DenseTensor>(
      experimental::full({3, 4}, 1.0, phi::DataType::FLOAT32).impl());
69 70
  *(selected_rows->mutable_value()) = *dense_tensor;
  experimental::Tensor x(selected_rows);
71
  auto out = experimental::scale(x, 2.0, 1.0, true);
72 73 74 75 76 77

  ASSERT_EQ(out.dims().size(), 2);
  ASSERT_EQ(out.dims()[0], 3);
  ASSERT_EQ(out.dims()[1], 4);
  ASSERT_EQ(out.numel(), 12);
  ASSERT_EQ(out.is_cpu(), true);
78 79
  ASSERT_EQ(out.type(), phi::DataType::FLOAT32);
  ASSERT_EQ(out.layout(), phi::DataLayout::NCHW);
80 81 82 83 84 85
  ASSERT_EQ(out.initialized(), true);
  for (int64_t i = 0; i < out.numel(); ++i) {
    ASSERT_NEAR(3.0, out.data<float>()[i], 1e-6f);
  }
}

C
Chen Weihang 已提交
86 87
}  // namespace tests
}  // namespace paddle