concat_op.h 2.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* 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. */

#pragma once

#include <vector>
#include "paddle/framework/op_registry.h"
19
#include "paddle/operators/strided_memcpy.h"
20 21 22 23 24

namespace paddle {
namespace operators {

template <typename Place, typename T>
Y
Yu Yang 已提交
25
class ConcatKernel : public framework::OpKernel<T> {
26 27 28 29 30
 public:
  void Compute(const framework::ExecutionContext& ctx) const override {
    auto ins = ctx.MultiInput<framework::Tensor>("X");
    auto* out = ctx.Output<framework::Tensor>("Out");
    int64_t axis = static_cast<int64_t>(ctx.Attr<int>("axis"));
31
    const size_t n = ins.size();
32
    size_t output_offset = 0;
33 34
    out->mutable_data<T>(ctx.GetPlace());
    auto out_stride = framework::stride(out->dims());
35 36 37
    for (size_t i = 0; i < n; i++) {
      auto& in = ins[i];
      auto axis_dim = in->dims()[axis];
38 39 40 41 42 43 44 45 46
      auto in_stride = framework::stride(in->dims());
      StridedMemcpy<T>(ctx.device_context(), in->data<T>(), in_stride,
                       in->dims(), out_stride, out->data<T>() + output_offset);
      output_offset += axis_dim * in_stride[axis];
    }
  }
};

template <typename Place, typename T>
Y
Yu Yang 已提交
47
class ConcatGradKernel : public framework::OpKernel<T> {
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
 public:
  void Compute(const framework::ExecutionContext& ctx) const {
    auto* in = ctx.Input<framework::Tensor>(framework::GradVarName("Out"));
    auto outs = ctx.MultiOutput<framework::Tensor>(framework::GradVarName("X"));
    int64_t axis = static_cast<int64_t>(ctx.Attr<int>("axis"));
    const size_t n = outs.size();
    size_t input_offset = 0;
    auto in_stride = framework::stride(in->dims());
    for (size_t i = 0; i < n; i++) {
      auto& out = outs[i];
      out->mutable_data<T>(ctx.GetPlace());
      size_t axis_dim = out->dims()[axis];
      auto out_stride = framework::stride(out->dims());
      StridedMemcpy<T>(ctx.device_context(), in->data<T>() + input_offset,
                       in_stride, out->dims(), out_stride, out->data<T>());
      input_offset += axis_dim * in_stride[axis];
64 65 66 67 68 69
    }
  }
};

}  // namespace operators
}  // namespace paddle