concat_kernel.cpp 4.2 KB
Newer Older
H
Hao Han 已提交
1
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
S
sharper 已提交
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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75

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

#ifdef CONCAT_OP

#include "operators/kernel/concat_kernel.h"
#ifdef PADDLE_MOBILE_MALI_GPU
#include "acl_operator.h"
#include "framework/operator.h"
#include "operators/op_param.h"

namespace paddle_mobile {
namespace operators {

template <typename DeviceType, typename T>
class AclConcatOp : public acl::ACLOperator {
 public:
  AclConcatOp() {
    this->force_bypass_acl_path_ =
        bypass_acl_class_layer & FLAGS_ENABLE_ACL_CONCAT;
  }
  ~AclConcatOp() = default;
  AclConcatOp(const AclConcatOp&) = delete;
  AclConcatOp& operator=(const AclConcatOp&) = delete;
  AclConcatOp(AclConcatOp&&) = delete;
  AclConcatOp& operator=(AclConcatOp&&) = delete;

  acl::AclParameters& getargs() { return args; }

  void InitAclLayer(const ConcatParam& param) {
    setTargetHint(acl::TargetHint::OPENCL);
    const std::vector<framework::LoDTensor*>* input_data = &args.in_tensor;
    arm_compute::TensorShape output_shape(args.out_cols, args.out_rows,
                                          args.out_depth, args.batch);

    if (is_operator_init_done(output_shape)) return;
    set_operator_init_done();
    this->force_bypass_acl_path_ = false;
    T type;

    for (int i = 0; i < input_data->size(); i++) {
      int in_batch = (*input_data)[i]->dims()[0];
      int in_channels = (*input_data)[i]->dims()[1];
      int in_width = (*input_data)[i]->dims()[2];
      int in_height = (*input_data)[i]->dims()[3];
      arm_compute::TensorShape in_shape(in_width, in_height, in_channels);

      new_tensor(cinput(i), in_shape,
                 acl::InputdataPtr(this, args.in_tensor, type, i));
    }

    //[width, height, OFM]
    new_tensor(output(), output_shape, args.output_data);

    acl_configure(concat, this, input_data->size());
  }

  void RunAcl(const std::vector<framework::LoDTensor*>& input, void* output) {
    T type;
    acl::acl_run(this, input, output, type);
  }
  bool Bypass_acl(const ConcatParam& param) {
    bool bypass_acl = false;
    AclParametersByContext(param);
H
Hao Han 已提交
76
    InitAclLayer(param);
S
sharper 已提交
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
    // for performance, more groups impact GPU performance
    if (this->force_bypass_acl_path_ || !args.is_channel_concat) {
      bypass_acl = true;
    }
    return bypass_acl;
  }

 private:
  void AclParametersByContext(const ConcatParam& param) {
    auto inputs = param.Inputs();
    auto* output = param.Out();
    int64_t axis = param.Axis();

    T* output_data = output->mutable_data<T>();

    args.is_channel_concat = (axis == 1);
    args.in_tensor = inputs;
    args.output_data = (void*)output_data;

    args.batch = output->dims()[0];
    args.out_depth = output->dims()[1];
    args.out_rows = output->dims()[2];
    args.out_cols = output->dims()[3];
  }
  acl::AclParameters args;
};

template <>
H
halsay 已提交
105
bool ConcatKernel<GPU_MALI, float>::Init(ConcatParam* param) {
S
sharper 已提交
106 107 108 109 110 111
  AclConcatOp<GPU_MALI, float>* acl_op =
      reinterpret_cast<AclConcatOp<GPU_MALI, float>*>(this->GetAclOp());
  if (acl_op == nullptr) {
    acl_op = new AclConcatOp<GPU_MALI, float>();
    this->SetAclOp((void*)acl_op, (void*)this);
  }
H
halsay 已提交
112
  if (acl_op->Bypass_acl(*param)) {
H
Hao Han 已提交
113 114 115
    std::cout << "init acl failed" << std::endl;
    return false;
  }
S
sharper 已提交
116 117 118 119 120 121 122 123 124 125 126 127
  return true;
}

template <>
void ConcatKernel<GPU_MALI, float>::Compute(const ConcatParam& param) const {
  std::cout << "init acl" << std::endl;
  AclConcatOp<GPU_MALI, float>* acl_op =
      reinterpret_cast<AclConcatOp<GPU_MALI, float>*>(this->GetAclOp());
  if (acl_op == nullptr) {
    return;
  }
  acl::AclParameters& args = acl_op->getargs();
H
Hao Han 已提交
128
  acl_op->RunAcl(args.in_tensor, args.output_data);
S
sharper 已提交
129 130 131 132 133 134 135 136
}

template class ConcatKernel<GPU_MALI, float>;
}  // namespace operators
}  // namespace paddle_mobile

#endif
#endif