average_accumulates_op.cu 3.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/* Copyright (c) 2016 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. */

#include "paddle/fluid/operators/average_accumulates_op.h"
#include "paddle/fluid/platform/gpu_info.h"

namespace paddle {
namespace operators {
template <>
W
wanghaoshuang 已提交
21
void GetAccumulators<paddle::platform::CUDADeviceContext>(
A
Abhinav Arora 已提交
22 23
    const framework::ExecutionContext& ctx, int64_t* num_updates_,
    int64_t* num_accumulates_, int64_t* old_num_accumulates_) {
W
wanghaoshuang 已提交
24 25 26 27
  auto* in_old_num_accumulates = ctx.Input<Tensor>("in_old_num_accumulates");
  auto* in_num_accumulates = ctx.Input<Tensor>("in_num_accumulates");
  auto* in_num_updates = ctx.Input<Tensor>("in_num_updates");
  auto stream = ctx.cuda_device_context().stream();
28 29 30 31 32 33
  auto cuda_place =
      boost::get<platform::CUDAPlace>(in_old_num_accumulates->place());
  memory::Copy(platform::CPUPlace(), old_num_accumulates_, cuda_place,
               in_old_num_accumulates->data<int64_t>(), sizeof(int64_t),
               stream);
  memory::Copy(platform::CPUPlace(), num_accumulates_, cuda_place,
W
wanghaoshuang 已提交
34
               in_num_accumulates->data<int64_t>(), sizeof(int64_t), stream);
35
  memory::Copy(platform::CPUPlace(), num_updates_, cuda_place,
W
wanghaoshuang 已提交
36
               in_num_updates->data<int64_t>(), sizeof(int64_t), stream);
37 38 39
}

template <>
W
wanghaoshuang 已提交
40
void SetAccumulators<paddle::platform::CUDADeviceContext>(
41 42
    const framework::ExecutionContext& ctx, int64_t num_updates_,
    int64_t num_accumulates_, int64_t old_num_accumulates_) {
W
wanghaoshuang 已提交
43 44 45 46
  auto stream = ctx.cuda_device_context().stream();
  auto* out_old_num_accumulates = ctx.Output<Tensor>("out_old_num_accumulates");
  auto* out_num_accumulates = ctx.Output<Tensor>("out_num_accumulates");
  auto* out_num_updates = ctx.Output<Tensor>("out_num_updates");
47 48
  auto cuda_place =
      boost::get<platform::CUDAPlace>(out_old_num_accumulates->place());
49

50
  memory::Copy(cuda_place, out_old_num_accumulates->data<int64_t>(),
W
wanghaoshuang 已提交
51 52
               platform::CPUPlace(), &old_num_accumulates_, sizeof(int64_t),
               stream);
53
  memory::Copy(cuda_place, out_num_accumulates->data<int64_t>(),
W
wanghaoshuang 已提交
54 55
               platform::CPUPlace(), &num_accumulates_, sizeof(int64_t),
               stream);
56
  memory::Copy(cuda_place, out_num_updates->data<int64_t>(),
W
wanghaoshuang 已提交
57
               platform::CPUPlace(), &num_updates_, sizeof(int64_t), stream);
58 59
}

W
wanghaoshuang 已提交
60 61 62
}  // namespace operators
}  // namespace paddle

63 64
namespace ops = paddle::operators;
REGISTER_OP_CUDA_KERNEL(
W
wanghaoshuang 已提交
65
    average_accumulates,
66 67
    ops::AverageAccumulatesKernel<paddle::platform::CUDADeviceContext, float>,
    ops::AverageAccumulatesKernel<paddle::platform::CUDADeviceContext, double>);