sequence_padding_test.cc 3.9 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 26 27 28 29 30 31 32 33 34

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;
  paddle::framework::Tensor padding;

  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 已提交
35
  for (int64_t i = 0; i < cpu_seq.numel(); ++i) {
Y
Yiqun Liu 已提交
36 37 38 39 40 41 42 43
    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 已提交
44
    TensorCopySync(cpu_seq, *place, &seq);
Y
Yiqun Liu 已提交
45 46 47 48
    seq.set_lod(lod);
  }

  const size_t max_sequence_length =
Y
yangyaming 已提交
49
      paddle::operators::math::MaximumSequenceLength(lod[level]);
Y
Yiqun Liu 已提交
50 51 52 53 54
  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 已提交
55

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

Y
Yiqun Liu 已提交
58
  paddle::operators::math::PaddingLoDTensorFunctor<DeviceContext, T>()(
Y
yangyaming 已提交
59 60
      *context, seq, &padding, 0, false, 0,
      paddle::operators::math::kLengthBatchWidth);
Y
Yiqun Liu 已提交
61 62 63 64

  seq_back.set_lod(lod);
  seq_back.mutable_data<T>(seq_dims, *place);
  paddle::operators::math::UnpaddingLoDTensorFunctor<DeviceContext, T>()(
Y
yangyaming 已提交
65 66
      *context, &seq_back, padding, false, 0,
      paddle::operators::math::kLengthBatchWidth);
Y
Yiqun Liu 已提交
67 68 69 70

  if (paddle::platform::is_cpu_place(*place)) {
    cpu_seq_back = seq_back;
  } else {
F
fengjiayi 已提交
71
    TensorCopySync(seq_back, paddle::platform::CPUPlace(), &cpu_seq_back);
Y
Yiqun Liu 已提交
72 73 74 75 76
    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 已提交
77
  for (int64_t i = 0; i < cpu_seq.numel(); ++i) {
Y
Yiqun Liu 已提交
78 79 80 81 82
    EXPECT_EQ(cpu_seq.data<T>()[i], cpu_seq_back.data<T>()[i]);
  }

  delete place;
  delete context;
83
}
Y
Yiqun Liu 已提交
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109

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