sequence_padding_test.cc 4.3 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
Y
Yiqun Liu 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14

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. */

Y
Yi Wang 已提交
15
#include "paddle/fluid/operators/math/sequence_padding.h"
Y
Yiqun Liu 已提交
16
#include <gtest/gtest.h>
17
#include <vector>
Y
Yiqun Liu 已提交
18 19 20 21 22 23 24 25

template <typename DeviceContext, typename Place, typename T>
void TestSequencePadding(const paddle::framework::LoD& lod,
                         const size_t sequence_width) {
  paddle::framework::LoDTensor cpu_seq;
  paddle::framework::LoDTensor cpu_seq_back;
  paddle::framework::LoDTensor seq;
  paddle::framework::LoDTensor seq_back;
F
fengjiayi 已提交
26
  paddle::framework::LoDTensor padding;
F
fengjiayi 已提交
27 28
  paddle::framework::LoDTensor cpu_pad_value;
  paddle::framework::LoDTensor pad_value;
Y
Yiqun Liu 已提交
29 30 31 32 33 34 35 36

  const size_t level = lod.size() - 1;
  auto seq_dims =
      paddle::framework::make_ddim({static_cast<int64_t>(lod[level].back()),
                                    static_cast<int64_t>(sequence_width)});

  cpu_seq.set_lod(lod);
  cpu_seq.mutable_data<T>(seq_dims, paddle::platform::CPUPlace());
C
chengduoZH 已提交
37
  for (int64_t i = 0; i < cpu_seq.numel(); ++i) {
Y
Yiqun Liu 已提交
38 39 40 41 42 43 44 45
    cpu_seq.data<T>()[i] = static_cast<T>(i);
  }

  auto* place = new Place();
  DeviceContext* context = new DeviceContext(*place);
  if (paddle::platform::is_cpu_place(*place)) {
    seq = cpu_seq;
  } else {
F
fengjiayi 已提交
46
    TensorCopySync(cpu_seq, *place, &seq);
Y
Yiqun Liu 已提交
47 48 49 50
    seq.set_lod(lod);
  }

  const size_t max_sequence_length =
Y
yangyaming 已提交
51
      paddle::operators::math::MaximumSequenceLength(lod[level]);
Y
Yiqun Liu 已提交
52 53 54 55 56
  const size_t num_sequences = lod[level].size() - 1;
  auto padding_dims =
      paddle::framework::make_ddim({static_cast<int64_t>(max_sequence_length),
                                    static_cast<int64_t>(num_sequences),
                                    static_cast<int64_t>(sequence_width)});
Y
yangyaming 已提交
57

Y
Yiqun Liu 已提交
58
  padding.mutable_data<T>(padding_dims, *place);
Y
yangyaming 已提交
59

F
fengjiayi 已提交
60 61 62 63 64 65 66 67 68
  T* pad_value_data =
      cpu_pad_value.mutable_data<T>({1}, paddle::platform::CPUPlace());
  *pad_value_data = static_cast<T>(0);
  if (paddle::platform::is_cpu_place(*place)) {
    pad_value = cpu_pad_value;
  } else {
    TensorCopySync(cpu_pad_value, *place, &pad_value);
  }

Y
Yiqun Liu 已提交
69
  paddle::operators::math::PaddingLoDTensorFunctor<DeviceContext, T>()(
F
fengjiayi 已提交
70
      *context, seq, &padding, pad_value, -1, 0, false,
Y
yangyaming 已提交
71
      paddle::operators::math::kLengthBatchWidth);
Y
Yiqun Liu 已提交
72 73 74 75

  seq_back.set_lod(lod);
  seq_back.mutable_data<T>(seq_dims, *place);
  paddle::operators::math::UnpaddingLoDTensorFunctor<DeviceContext, T>()(
F
fengjiayi 已提交
76
      *context, padding, &seq_back, -1, 0, false,
Y
yangyaming 已提交
77
      paddle::operators::math::kLengthBatchWidth);
Y
Yiqun Liu 已提交
78 79 80 81

  if (paddle::platform::is_cpu_place(*place)) {
    cpu_seq_back = seq_back;
  } else {
F
fengjiayi 已提交
82
    TensorCopySync(seq_back, paddle::platform::CPUPlace(), &cpu_seq_back);
Y
Yiqun Liu 已提交
83 84 85 86 87
    cpu_seq_back.set_lod(lod);
  }

  EXPECT_EQ(cpu_seq.numel(), cpu_seq_back.numel());
  EXPECT_EQ(cpu_seq.dims(), cpu_seq_back.dims());
C
chengduoZH 已提交
88
  for (int64_t i = 0; i < cpu_seq.numel(); ++i) {
Y
Yiqun Liu 已提交
89 90 91 92 93
    EXPECT_EQ(cpu_seq.data<T>()[i], cpu_seq_back.data<T>()[i]);
  }

  delete place;
  delete context;
94
}
Y
Yiqun Liu 已提交
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120

TEST(Seq2BatchPadding, CPU) {
  paddle::framework::LoD lod1;
  lod1.push_back(std::vector<size_t>{0, 10});
  TestSequencePadding<paddle::platform::CPUDeviceContext,
                      paddle::platform::CPUPlace, float>(lod1, 16);

  paddle::framework::LoD lod2;
  lod2.push_back(std::vector<size_t>{0, 2, 7, 10});
  TestSequencePadding<paddle::platform::CPUDeviceContext,
                      paddle::platform::CPUPlace, float>(lod2, 128);
}

#ifdef PADDLE_WITH_CUDA
TEST(SequencePadding, CUDA) {
  paddle::framework::LoD lod1;
  lod1.push_back(std::vector<size_t>{0, 10});
  TestSequencePadding<paddle::platform::CUDADeviceContext,
                      paddle::platform::CUDAPlace, float>(lod1, 16);

  paddle::framework::LoD lod2;
  lod2.push_back(std::vector<size_t>{0, 2, 7, 10});
  TestSequencePadding<paddle::platform::CUDADeviceContext,
                      paddle::platform::CUDAPlace, float>(lod2, 128);
}
#endif