cl_helper.h 2.4 KB
Newer Older
L
liuruilong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* Copyright (c) 2018 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. */

#pragma once

17
#include <string>
L
liuruilong 已提交
18
#include <type_traits>
19
#include <vector>
L
liuruilong 已提交
20

L
liuruilong 已提交
21
#include "common/log.h"
L
liuruilong 已提交
22
#include "framework/cl/cl_deleter.h"
23 24
#include "framework/cl/cl_image.h"
#include "framework/cl/cl_scope.h"
L
liuruilong 已提交
25 26 27 28 29 30

namespace paddle_mobile {
namespace framework {

class CLHelper {
 public:
L
liuruilong 已提交
31
  CLHelper() = default;
L
liuruilong 已提交
32

33
  explicit CLHelper(CLScope *scope) : scope_(scope) {}
L
liuruilong 已提交
34 35

  void AddKernel(const std::string &kernel_name, const std::string &file_name) {
L
liuruilong 已提交
36
    DLOG << " begin add kernel ";
L
liuruilong 已提交
37
    auto kernel = scope_->GetKernel(kernel_name, file_name);
L
liuruilong 已提交
38
    DLOG << " add kernel ing ";
L
liuruilong 已提交
39
    kernels.emplace_back(std::move(kernel));
L
liuruilong 已提交
40 41
  }

L
liuruilong 已提交
42 43 44 45
  cl_kernel KernelAt(const int index) {
    DLOG << " kernel count: " << kernels.size();
    return kernels[index].get();
  }
L
liuruilong 已提交
46

47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
  cl_command_queue CLCommandQueue() { return scope_->CommandQueue(); }

  cl_context CLContext() { return scope_->Context(); }

  std::vector<size_t> DefaultWorkSize(const CLImage &image) {
    // n c h w
    auto image_dim = image.dims();
    if (image_dim.size() == 4) {
      auto n = image_dim[0];
      auto h = image_dim[2];
      auto w = image_dim[3];

      auto image_width = image.ImageWidth();

      auto work_size_0 = image_width / w;

      auto work_size_1 = w;

      auto work_size_2 = n * h;
L
liuruilong 已提交
66

Y
yangfei 已提交
67
      return {work_size_0, work_size_1, work_size_2};
L
liuruilong 已提交
68
    } else if (image_dim.size() == 2) {
Y
yangfei 已提交
69 70 71 72 73 74 75 76
      auto image_width = image.ImageWidth();

      auto work_size_0 = image_width / image_dim[1];

      auto work_size_1 = image_dim[1];

      auto work_size_2 = image_dim[0];

77 78 79
      return {work_size_0, work_size_1, work_size_2};
    }
    PADDLE_MOBILE_THROW_EXCEPTION("not support this dim, need imp");
L
liuruilong 已提交
80 81 82 83 84 85 86
  }

 private:
  CLScope *scope_;
  std::vector<std::unique_ptr<_cl_kernel, CLKernelDeleter>> kernels;
};

87 88
}  // namespace framework
}  // namespace paddle_mobile