cl_scope.h 2.6 KB
Newer Older
L
liuruilong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/* 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

#include <memory>
#include <string>
#include <unordered_map>

L
liuruilong 已提交
21
#include "CL/cl.h"
22 23 24
#include "framework/cl/cl_deleter.h"
#include "framework/cl/cl_engine.h"
#include "framework/cl/cl_tool.h"
L
liuruilong 已提交
25 26 27 28 29 30 31

namespace paddle_mobile {
namespace framework {

class CLScope {
 public:
  CLScope() {
xiebaiyuan's avatar
xiebaiyuan 已提交
32 33 34
    CLEngine *engine = CLEngine::Instance();
    context_ = engine->getContext();
    command_queue_ = engine->getClCommandQueue();
L
liuruilong 已提交
35 36
  }

xiebaiyuan's avatar
xiebaiyuan 已提交
37
  cl_command_queue CommandQueue() { return command_queue_; }
L
liuruilong 已提交
38

39
  std::unique_ptr<_cl_kernel, CLKernelDeleter> GetKernel(
40 41
      const std::string &kernel_name, const std::string &file_name,
      const std::string &options) {
L
liuruilong 已提交
42
    DLOG << " to get program " << file_name;
43
    auto program = Program(file_name, options);
L
liuruilong 已提交
44 45
    DLOG << " end get program ~ ";
    DLOG << " to create kernel: " << kernel_name;
46
    std::unique_ptr<_cl_kernel, CLKernelDeleter> kernel(
L
liuruilong 已提交
47 48
        clCreateKernel(program, kernel_name.c_str(), &status_));
    CL_CHECK_ERRORS(status_);
L
liuruilong 已提交
49
    DLOG << " end create kernel ~ ";
L
liuruilong 已提交
50 51 52
    return std::move(kernel);
  }

xiebaiyuan's avatar
xiebaiyuan 已提交
53
  cl_context Context() { return context_; }
L
liuruilong 已提交
54

55 56 57 58 59 60
  cl_program Program(const std::string &file_name, const std::string &options) {
    std::string program_key = file_name;
    if (!options.empty()) {
      program_key += options;
    }
    auto it = programs_.find(program_key);
L
liuruilong 已提交
61 62 63 64
    if (it != programs_.end()) {
      return it->second.get();
    }

Y
yangfei 已提交
65
    auto program = CLEngine::Instance()->CreateProgramWith(
xiebaiyuan's avatar
xiebaiyuan 已提交
66
        context_,
Y
yangfei 已提交
67
        CLEngine::Instance()->GetCLPath() + "/cl_kernel/" + file_name);
L
liuruilong 已提交
68

69 70 71
    DLOG << " --- begin build program -> " << program_key << " --- ";
    CLEngine::Instance()->BuildProgram(program.get(), options);
    DLOG << " --- end build program -> " << program_key << " --- ";
L
liuruilong 已提交
72

73
    programs_[program_key] = std::move(program);
L
liuruilong 已提交
74

75
    return programs_[program_key].get();
L
liuruilong 已提交
76 77 78
  }

 private:
79
  cl_int status_;
xiebaiyuan's avatar
xiebaiyuan 已提交
80 81
  cl_context context_;
  cl_command_queue command_queue_;
82 83 84
  std::unordered_map<std::string,
                     std::unique_ptr<_cl_program, CLProgramDeleter>>
      programs_;
L
liuruilong 已提交
85 86
};

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