scatter_test.cc 2.1 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
Z
zchen0211 已提交
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/scatter.h"
W
wanghuancoder 已提交
16

Z
zchen0211 已提交
17
#include <gtest/gtest.h>
W
wanghuancoder 已提交
18

19 20
#include "paddle/fluid/framework/tensor.h"
#include "paddle/fluid/platform/place.h"
Z
zchen0211 已提交
21 22

TEST(scatter, ScatterUpdate) {
Y
Yu Yang 已提交
23 24 25 26 27 28 29 30 31 32 33 34
  paddle::framework::Tensor src;
  paddle::framework::Tensor index;
  paddle::framework::Tensor output;

  auto* p_src = src.mutable_data<float>(paddle::framework::make_ddim({1, 4}),
                                        paddle::platform::CPUPlace());
  auto* p_index = index.mutable_data<int>(paddle::framework::make_ddim({1}),
                                          paddle::platform::CPUPlace());

  for (size_t i = 0; i < 4; ++i) {
    p_src[i] = static_cast<float>(i);
  }
Z
zchen0211 已提交
35 36
  p_index[0] = 1;

Y
Yu Yang 已提交
37
  auto* p_output = output.mutable_data<float>(
38
      paddle::framework::make_ddim({4, 4}), paddle::platform::CPUPlace());
Z
zchen0211 已提交
39

Y
Yu Yang 已提交
40 41 42 43
  for (int64_t i = 0; i < output.numel(); ++i) {
    p_output[i] = 0;
  }

Z
zchen0211 已提交
44 45
  auto* cpu_place = new paddle::platform::CPUPlace();
  paddle::platform::CPUDeviceContext ctx(*cpu_place);
Y
Yu Yang 已提交
46
  paddle::operators::ScatterAssign<float>(ctx, src, index, &output);
Z
zchen0211 已提交
47

48
  for (size_t i = 0; i < 4; ++i) EXPECT_EQ(p_output[i], 0.0f);
Y
Yu Yang 已提交
49
  for (size_t i = 0; i < 4; ++i) EXPECT_EQ(output.data<float>()[i], 0.0f);
50 51 52
  for (size_t i = 4; i < 8; ++i) {
    EXPECT_EQ(p_output[i], static_cast<float>(i - 4));
  }
Z
zchen0211 已提交
53
  for (size_t i = 4; i < 8; ++i)
Y
Yu Yang 已提交
54
    EXPECT_EQ(output.data<float>()[i], static_cast<float>(i - 4));
55
  for (size_t i = 8; i < 16; ++i) EXPECT_EQ(p_output[i], 0.0f);
Y
Yu Yang 已提交
56
  for (size_t i = 8; i < 16; ++i) EXPECT_EQ(output.data<float>()[i], 0.0f);
57 58

  delete cpu_place;
Z
zchen0211 已提交
59
}