test_scale_api.cc 2.8 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 28
PD_DECLARE_KERNEL(full, CPU, ALL_LAYOUT);
PD_DECLARE_KERNEL(scale, CPU, ALL_LAYOUT);
PD_DECLARE_KERNEL(scale_sr, CPU, ALL_LAYOUT);

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

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

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

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

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

61 62 63 64
TEST(API, scale_sr) {
  // 1. check `scale` is float value
  std::vector<int64_t> rows{0, 4, 7};
  int64_t height = 10;
65 66 67
  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());
68 69
  *(selected_rows->mutable_value()) = *dense_tensor;
  experimental::Tensor x(selected_rows);
70
  auto out = experimental::scale(x, 2.0, 1.0, true);
71 72 73 74 75 76

  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);
77 78
  ASSERT_EQ(out.type(), phi::DataType::FLOAT32);
  ASSERT_EQ(out.layout(), phi::DataLayout::NCHW);
79 80 81 82 83 84
  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 已提交
85 86
}  // namespace tests
}  // namespace paddle