accuracy_op.cu 3.8 KB
Newer Older
武毅 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

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. */

15 16
#include <thrust/execution_policy.h>
#include <thrust/reduce.h>
武毅 已提交
17
#include "paddle/operators/accuracy_op.h"
18
#include "paddle/platform/cuda_helper.h"
武毅 已提交
19 20 21

namespace paddle {
namespace operators {
22
using platform::PADDLE_CUDA_NUM_THREADS;
武毅 已提交
23

武毅 已提交
24 25 26
template <int BlockSize>
__global__ void AccuracyCudaKernel(const int N, const int D,
                                   const int64_t* Xdata,
D
Dong Zhihong 已提交
27 28
                                   const int64_t* labeldata, int* correct_data,
                                   float* accuracy) {
29 30 31 32 33 34 35 36
  int count = 0;
  __shared__ int total[BlockSize];

  // support only 1 block
  for (int i = threadIdx.x; i < (N); i += BlockSize) {
    for (int j = 0; j < D; ++j) {
      if (Xdata[i * D + j] == labeldata[i]) {
        ++count;
武毅 已提交
37 38 39 40
        break;
      }
    }
  }
41 42 43 44 45 46
  total[threadIdx.x] = count;
  __syncthreads();

  // reduce the count with init value 0, and output accuracy.
  int result = thrust::reduce(thrust::device, total, total + BlockSize, 0);
  if (threadIdx.x == 0) {
D
Dong Zhihong 已提交
47
    *correct_data = result;
48 49
    *accuracy = static_cast<float>(result) / static_cast<float>(N);
  }
武毅 已提交
50 51 52
}

template <typename T>
Y
Yu Yang 已提交
53
class AccuracyOpCUDAKernel : public framework::OpKernel<T> {
武毅 已提交
54 55 56 57
 public:
  void Compute(const framework::ExecutionContext& ctx) const override {
    PADDLE_ENFORCE(platform::is_gpu_place(ctx.GetPlace()),
                   "It must use GPUPlace.");
武毅 已提交
58 59
    auto* inference = ctx.Input<Tensor>("Out");
    auto* indices = ctx.Input<Tensor>("Indices");
武毅 已提交
60
    auto* label = ctx.Input<Tensor>("Label");
D
Dong Zhihong 已提交
61

武毅 已提交
62
    auto* accuracy = ctx.Output<Tensor>("Accuracy");
D
Dong Zhihong 已提交
63 64
    auto* correct = ctx.Output<Tensor>("Correct");
    auto* total = ctx.Output<Tensor>("Total");
武毅 已提交
65 66
    // FIXME(typhoonzero): only support indices currently
    // if add support for output values, how to detect the data type?
武毅 已提交
67 68
    const int64_t* indices_data = indices->data<int64_t>();
    const int64_t* label_data = label->data<int64_t>();
D
Dong Zhihong 已提交
69 70 71

    int* correct_data = correct->mutable_data<int>(ctx.GetPlace());
    int* total_data = total->mutable_data<int>(ctx.GetPlace());
武毅 已提交
72 73
    float* accuracy_data = accuracy->mutable_data<float>(ctx.GetPlace());

D
Dong Zhihong 已提交
74
    int num_samples = static_cast<int>(inference->dims()[0]);
武毅 已提交
75
    size_t infer_width = inference->dims()[1];
T
update  
typhoonzero 已提交
76
    PADDLE_ENFORCE(cudaMemset(accuracy_data, 0, sizeof(float)));
D
Dong Zhihong 已提交
77
    // cudaMemset((void**)&correct_data, 0, sizeof(float));
武毅 已提交
78 79 80 81

    if (num_samples == 0) {
      return;
    }
D
Dong Zhihong 已提交
82
    cudaMemcpy(total_data, &num_samples, sizeof(int), cudaMemcpyHostToDevice);
武毅 已提交
83

武毅 已提交
84
    AccuracyCudaKernel<PADDLE_CUDA_NUM_THREADS><<<
T
typhoonzero 已提交
85
        1, PADDLE_CUDA_NUM_THREADS, 0, ctx.cuda_device_context().stream()>>>(
D
Dong Zhihong 已提交
86 87 88 89 90 91 92 93 94 95
        num_samples, infer_width, indices_data, label_data, correct_data,
        accuracy_data);

    int d_num_samples, d_num_correct;
    float d_accuracy;
    cudaMemcpy(&d_num_correct, correct_data, sizeof(int),
               cudaMemcpyDeviceToHost);
    cudaMemcpy(&d_num_samples, total_data, sizeof(int), cudaMemcpyDeviceToHost);
    cudaMemcpy(&d_accuracy, accuracy_data, sizeof(float),
               cudaMemcpyDeviceToHost);
武毅 已提交
96 97 98 99 100 101
  }
};

}  // namespace operators
}  // namespace paddle

D
Dong Zhihong 已提交
102 103
// FIXME(typhoonzero): types of T is for inference data.
// label data is always int64
武毅 已提交
104 105
REGISTER_OP_GPU_KERNEL(accuracy, paddle::operators::AccuracyOpCUDAKernel<float>,
                       paddle::operators::AccuracyOpCUDAKernel<double>);