target_assign_op.cu 2.3 KB
Newer Older
1
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
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/target_assign_op.h"
16 17 18 19

namespace paddle {
namespace operators {

20
template <typename T, typename WT>
D
dangqingqing 已提交
21
__global__ void NegTargetAssignKernel(const int* neg_indices, const size_t* lod,
22 23 24
                                      const int N, const int M, const int K,
                                      const int mismatch_value, T* out,
                                      WT* out_wt) {
25 26 27 28
  int bidx = blockIdx.x;
  int st = lod[bidx];
  int ed = lod[bidx + 1];

29
  int row_start = bidx * M;
30
  for (int i = st + threadIdx.x; i < ed; i += blockDim.x) {
D
dangqingqing 已提交
31
    int id = row_start + neg_indices[i];
32 33 34 35
    for (int k = 0; k < K; ++k) {
      out[id * K + k] = T(mismatch_value);
      out_wt[id * K + k] = WT(1.);
    }
36 37 38
  }
}

39 40
template <typename T, typename WT>
struct NegTargetAssignFunctor<platform::CUDADeviceContext, T, WT> {
41
  void operator()(const platform::CUDADeviceContext& ctx,
42 43 44
                  const int* neg_indices, const size_t* lod, const int N,
                  const int M, const int K, const int mismatch_value, T* out,
                  WT* out_wt) {
45
    const int block_size = 256;
46 47 48
    const int grid_size = N;
    NegTargetAssignKernel<T, WT><<<grid_size, block_size, 0, ctx.stream()>>>(
        neg_indices, lod, N, M, K, mismatch_value, out, out_wt);
49 50 51
  }
};

52 53 54
template struct NegTargetAssignFunctor<platform::CUDADeviceContext, int, float>;
template struct NegTargetAssignFunctor<platform::CUDADeviceContext, float,
                                       float>;
55 56 57 58 59 60 61

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
REGISTER_OP_CUDA_KERNEL(
    target_assign,
62 63
    ops::TargetAssignKernel<paddle::platform::CUDADeviceContext, int, float>,
    ops::TargetAssignKernel<paddle::platform::CUDADeviceContext, float, float>);