cl_helper.h 2.0 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 21

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

namespace paddle_mobile {
namespace framework {

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

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

  void AddKernel(const std::string &kernel_name, const std::string &file_name) {
    auto kernel = scope_->GetKernel(kernel_name, file_name);
L
liuruilong 已提交
36
    kernels.emplace_back(std::move(kernel));
L
liuruilong 已提交
37 38
  }

39
  cl_kernel KernelAt(const int index) { return kernels[index].get(); }
L
liuruilong 已提交
40

41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
  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 已提交
60

61 62 63
      return {work_size_0, work_size_1, work_size_2};
    }
    PADDLE_MOBILE_THROW_EXCEPTION("not support this dim, need imp");
L
liuruilong 已提交
64 65 66 67 68 69 70
  }

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

71 72
}  // namespace framework
}  // namespace paddle_mobile