gather_op_npu_test.cc 4.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/* 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. */

#ifndef _WIN32
#include <unistd.h>
#endif

#include <string>
#include <thread>  // NOLINT
#include <vector>

#include "gtest/gtest.h"
#include "paddle/fluid/framework/op_registry.h"
#include "paddle/fluid/framework/operator.h"
#include "paddle/fluid/framework/program_desc.h"
#include "paddle/fluid/string/printf.h"
28
#include "paddle/phi/kernels/funcs/math_function.h"
29 30 31 32

namespace f = paddle::framework;
namespace p = paddle::platform;

33
USE_OP_ITSELF(gather);
34
USE_OP_DEVICE_KERNEL(gather, NPU);
35
USE_OP_ITSELF(gather_grad);
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
USE_OP_DEVICE_KERNEL(gather_grad, NPU);

template <typename T>
void Compare(f::Scope* scope, const p::DeviceContext& ctx,
             std::string op_type) {
  // init
  auto x = scope->Var("X");
  auto tensor_x = x->GetMutable<f::LoDTensor>();

  auto index = scope->Var("Index");
  auto tensor_index = index->GetMutable<f::LoDTensor>();

  std::vector<T> init_x;
  for (int64_t i = 1; i < 7; ++i) {
    // 1,2,3,4,5,6
    init_x.push_back(static_cast<T>(i));
  }

  // [[1, 2],[3, 4],[5, 6]]
55
  paddle::framework::TensorFromVector(init_x, ctx, tensor_x);
56
  tensor_x->Resize(phi::make_ddim({3, 2}));
57 58 59

  std::vector<int> init_index = {1, 2};
  paddle::framework::TensorFromVector<int>(init_index, ctx, tensor_index);
60
  tensor_index->Resize(phi::make_ddim({2}));
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75

  ctx.Wait();

  auto out = scope->Var("Out");
  auto tensor_out = out->GetMutable<f::LoDTensor>();

  // run
  f::AttributeMap attrs = {{"validate_indices", true}};
  auto op = f::OpRegistry::CreateOp(
      op_type, {{"X", {"X"}}, {"Index", {"Index"}}}, {{"Out", {"Out"}}}, attrs);

  auto place = ctx.GetPlace();
  op->Run(*scope, place);

  std::vector<T> out_vec;
76
  paddle::framework::TensorToVector(*tensor_out, ctx, &out_vec);
77 78 79 80 81 82 83 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 110 111

  ctx.Wait();

  // ref:https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/tensor/manipulation/gather_cn.html#gather
  for (int i = 0; i < static_cast<int>(out_vec.size()); ++i) {
    VLOG(3) << "out_vec[" << i << "] : " << out_vec[i];
  }
  uint32_t expected_size = 4;
  EXPECT_EQ((uint32_t)out_vec.size(), expected_size);

  // {3, 4, 5, 6}
  std::vector<T> expected_out_vec;
  for (int64_t i = 3; i < 7; ++i) {
    expected_out_vec.push_back(static_cast<T>(i));
  }
  for (uint32_t i = 0; i < out_vec.size(); i++) {
    EXPECT_EQ(out_vec[i], expected_out_vec[i]);
  }
}

template <typename T>
void CompareGrad(f::Scope* scope, const p::DeviceContext& ctx,
                 std::string op_type) {
  // init
  auto index = scope->Var("Index");
  auto tensor_index = index->GetMutable<f::LoDTensor>();

  auto x = scope->Var("X");
  auto tensor_x = x->GetMutable<f::LoDTensor>();

  auto dout = scope->Var("DOut");
  auto tensor_dout = dout->GetMutable<f::LoDTensor>();

  std::vector<int> init_index = {0, 1};
  paddle::framework::TensorFromVector<int>(init_index, ctx, tensor_index);
112
  tensor_index->Resize(phi::make_ddim({2}));
113 114

  std::vector<T> init_x = {1.0, 1.0, 1.0, 1.0, 1.0, 1.0};
115
  paddle::framework::TensorFromVector(init_x, ctx, tensor_x);
116
  tensor_x->Resize(phi::make_ddim({3, 2}));
117 118

  std::vector<T> init_dout = {5.0, 10.0, 2.0, 3.0};
119
  paddle::framework::TensorFromVector(init_dout, ctx, tensor_dout);
120
  tensor_dout->Resize(phi::make_ddim({2, 2}));
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136

  ctx.Wait();

  auto dx = scope->Var("DX");
  auto tensor_dx = dx->GetMutable<f::LoDTensor>();

  // run
  f::AttributeMap attrs;
  auto op = f::OpRegistry::CreateOp(
      op_type, {{"X", {"X"}}, {"Index", {"Index"}}, {"Out@GRAD", {"DOut"}}},
      {{"X@GRAD", {"DX"}}}, attrs);

  auto place = ctx.GetPlace();
  op->Run(*scope, place);

  std::vector<T> dx_vec;
137
  paddle::framework::TensorToVector(*tensor_dx, ctx, &dx_vec);
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152

  ctx.Wait();

  uint32_t expected_size = 3 * 2;
  EXPECT_EQ((uint32_t)dx_vec.size(), expected_size);

  std::vector<T> expected_dx_vec = {5.0, 10.0, 2.0, 3.0, 0.0, 0.0};
  for (uint32_t i = 0; i < dx_vec.size(); i++) {
    VLOG(3) << "dx_vec[i]=" << dx_vec[i];
    EXPECT_EQ(dx_vec[i], expected_dx_vec[i]);
  }
}

TEST(gather, NPU_fp32) {
  f::Scope scope;
153 154
  auto* ctx = p::DeviceContextPool::Instance().Get(p::NPUPlace(0));
  Compare<float>(&scope, *ctx, "gather");
155 156 157 158
}

TEST(gather, NPU_fp16) {
  f::Scope scope;
159 160
  auto* ctx = p::DeviceContextPool::Instance().Get(p::NPUPlace(0));
  Compare<p::float16>(&scope, *ctx, "gather");
161 162 163 164
}

TEST(gather_grad, NPU_fp32) {
  f::Scope scope;
165 166
  auto* ctx = p::DeviceContextPool::Instance().Get(p::NPUPlace(0));
  CompareGrad<float>(&scope, *ctx, "gather_grad");
167
}