selected_rows_test.cc 3.0 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
Q
qijun 已提交
2 3 4 5 6 7 8 9 10 11
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 已提交
12
#include "paddle/fluid/framework/selected_rows.h"
Q
qijun 已提交
13 14 15 16 17 18 19
#include "gtest/gtest.h"

namespace paddle {
namespace framework {

class SelectedRowsTester : public ::testing::Test {
 public:
Y
Yancey1989 已提交
20
  void SetUp() override {
Q
qijun 已提交
21 22 23 24 25
    std::vector<int64_t> rows{0, 4, 7};
    int64_t height = 10;
    int64_t row_numel = 100;
    selected_rows_.reset(new SelectedRows(rows, height));

Q
qijun 已提交
26 27
    Tensor* value = selected_rows_->mutable_value();
    value->mutable_data<float>(
Q
qijun 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
        make_ddim({static_cast<int64_t>(rows.size()), row_numel}), place_);
  }

 protected:
  platform::CPUPlace place_;
  std::unique_ptr<SelectedRows> selected_rows_{nullptr};
};

TEST_F(SelectedRowsTester, height) { ASSERT_EQ(selected_rows_->height(), 10); }

TEST_F(SelectedRowsTester, dims) {
  ASSERT_EQ(selected_rows_->value().dims(), make_ddim({3, 100}));
}

TEST_F(SelectedRowsTester, complete_dims) {
  ASSERT_EQ(selected_rows_->GetCompleteDims(), make_ddim({10, 100}));
}

46 47 48 49 50 51 52 53
TEST_F(SelectedRowsTester, SerializeAndDeseralize) {
  SelectedRows dst_tensor;
  platform::CPUDeviceContext cpu_ctx(place_);
  std::ostringstream oss;

  SerializeToStream(oss, *selected_rows_, cpu_ctx);

  std::istringstream iss(oss.str());
Y
Yancey 已提交
54
  DeserializeFromStream(iss, &dst_tensor, cpu_ctx);
55 56 57

  ASSERT_EQ(selected_rows_->rows(), dst_tensor.rows());
  ASSERT_EQ(selected_rows_->height(), dst_tensor.height());
Y
Yancey 已提交
58 59
  ASSERT_EQ(selected_rows_->value().dims(), dst_tensor.value().dims());
  ASSERT_EQ(selected_rows_->GetCompleteDims(), dst_tensor.GetCompleteDims());
60 61
}

Y
Yancey1989 已提交
62 63 64
TEST_F(SelectedRowsTester, Table) {
  platform::CPUPlace cpu;
  SelectedRows table;
Y
update  
Yancey1989 已提交
65 66 67 68
  // initialize a sparse table
  table.mutable_value()->Resize(framework::make_ddim({1, 100}));
  table.mutable_value()->mutable_data<float>(cpu);
  table.mutable_rows()->push_back(1);
Y
Yancey1989 已提交
69 70 71 72 73 74 75

  int64_t key = 10000;
  framework::Tensor value;
  value.Resize(framework::make_ddim({1, 100}));
  auto ptr = value.mutable_data<float>(cpu);
  ptr[0] = static_cast<float>(10);

Y
update  
Yancey1989 已提交
76
  ASSERT_EQ(table.rows().size(), static_cast<size_t>(1));
Y
Yancey1989 已提交
77 78 79 80
  ASSERT_EQ(table.HasKey(key), false);

  table.Set(key, value);

Y
update  
Yancey1989 已提交
81
  ASSERT_EQ(table.rows().size(), static_cast<size_t>(2));
Y
Yancey1989 已提交
82
  ASSERT_EQ(table.HasKey(key), true);
Y
update  
Yancey1989 已提交
83 84 85 86 87 88 89 90
  // check re-allocate
  ASSERT_EQ(table.value().dims()[0], static_cast<int64_t>(4));

  framework::Tensor get_value;
  get_value.mutable_data<float>(framework::make_ddim({20, 100}), cpu);
  table.Get(key, &get_value, 10);

  ASSERT_EQ(get_value.data<float>()[10 * 100], static_cast<float>(10));
Y
Yancey1989 已提交
91 92
}

Q
qijun 已提交
93 94
}  // namespace framework
}  // namespace paddle