/* 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. */ #include "lite/backends/opencl/cl_runtime.h" #include #include #include #include #include "lite/utils/cp_logging.h" namespace paddle { namespace lite { CLRuntime* CLRuntime::Global() { static CLRuntime cl_runtime_; cl_runtime_.Init(); return &cl_runtime_; } CLRuntime::~CLRuntime() { LOG(INFO) << "CLRuntime::~CLRuntime()"; // Note: do ReleaseResources() in predictor command_queue_&& clReleaseCommandQueue(command_queue_->get()); command_queue_.reset(); context_&& clReleaseContext(context_->get()); context_.reset(); device_.reset(); platform_.reset(); initialized_ = false; } void CLRuntime::ReleaseResources() { // if (is_resources_released_) { // return; // } if (command_queue_ != nullptr) { command_queue_->flush(); command_queue_->finish(); } LOG(INFO) << "kernels_.size():" << kernels_.size(); LOG(INFO) << "programs_.size():" << programs_.size(); for (size_t kidx = 0; kidx < kernels_.size(); ++kidx) { clReleaseKernel(kernels_[kidx]->get()); kernels_[kidx].reset(); } kernels_.clear(); kernel_offset_.clear(); for (auto& p : programs_) { // clReleaseProgram(p.second->get()); } // programs_.clear(); LOG(INFO) << "release resources finished."; is_resources_released_ = true; } bool CLRuntime::Init() { if (initialized_) { return true; } bool is_platform_init = InitializePlatform(); bool is_device_init = InitializeDevice(); is_init_success_ = is_platform_init && is_device_init; initialized_ = true; return initialized_; } cl::Platform& CLRuntime::platform() { CHECK(platform_ != nullptr) << "platform_ is not initialized!"; return *platform_; } cl::Context& CLRuntime::context() { if (context_ == nullptr) { context_ = CreateContext(); } return *context_; } cl::Device& CLRuntime::device() { CHECK(device_ != nullptr) << "device_ is not initialized!"; return *device_; } cl::CommandQueue& CLRuntime::command_queue() { if (command_queue_ == nullptr) { command_queue_ = CreateCommandQueue(context()); } return *command_queue_; } std::shared_ptr CLRuntime::CreateProgram( const cl::Context& context, std::string file_name) { auto cl_file = opencl_kernels_files.find(file_name); std::string content(cl_file->second.begin(), cl_file->second.end()); cl::Program::Sources sources; sources.push_back(content); auto prog = std::shared_ptr(new cl::Program(context, sources, &status_)); VLOG(4) << "OpenCL kernel file name: " << file_name; VLOG(4) << "Program source size: " << content.size(); CL_CHECK_FATAL(status_); return std::move(prog); } std::unique_ptr CLRuntime::CreateEvent( const cl::Context& context) { auto event = std::unique_ptr(new cl::UserEvent(context, &status_)); CL_CHECK_FATAL(status_); return std::move(event); } bool CLRuntime::BuildProgram(cl::Program* program, const std::string& options) { /* -I +CLRuntime::Global()->cl_path() + "/cl_kernel"*/ std::string build_option = options + " -cl-fast-relaxed-math "; VLOG(4) << "OpenCL build_option: " << build_option; status_ = program->build({*device_}, build_option.c_str()); CL_CHECK_ERROR(status_); if (status_ != CL_SUCCESS) { if (program->getBuildInfo(device()) == CL_BUILD_ERROR) { std::string log = program->getBuildInfo(device()); LOG(FATAL) << "Program build error: " << log; } return false; } return true; } bool CLRuntime::InitializePlatform() { std::vector all_platforms; status_ = cl::Platform::get(&all_platforms); CL_CHECK_ERROR(status_); if (all_platforms.empty()) { LOG(FATAL) << "No OpenCL platform found!"; return false; } platform_ = std::make_shared(); *platform_ = all_platforms[0]; return true; } bool CLRuntime::InitializeDevice() { // ===================== BASIC ===================== // CL_DEVICE_TYPE_GPU // CL_DEVICE_NAME // CL_DEVICE_SUPPORT // CL_DEVICE_MAX_COMPUTE_UNITS // CL_DEVICE_MAX_CLOCK_FREQUENCY std::vector all_devices; status_ = platform_->getDevices(CL_DEVICE_TYPE_GPU, &all_devices); CL_CHECK_ERROR(status_); if (all_devices.empty()) { LOG(FATAL) << "No OpenCL GPU device found!"; return false; } device_ = std::make_shared(); *device_ = all_devices[0]; auto device_name = device_->getInfo(); LOG(INFO) << "Using device: " << device_name; cl_device_type device_type = device_->getInfo(); auto device_type_to_str = [](cl_device_type t) -> std::string { std::string t_str{""}; switch (t) { case CL_DEVICE_TYPE_CPU: t_str = "CPU"; break; case CL_DEVICE_TYPE_GPU: t_str = "GPU"; break; case CL_DEVICE_TYPE_ACCELERATOR: t_str = "Accelerator"; break; case CL_DEVICE_TYPE_DEFAULT: t_str = "Default"; break; default: t_str = "Unknown"; } return t_str; }; LOG(INFO) << "device_type:" << device_type_to_str(device_type); device_info_["CL_DEVICE_TYPE"] = device_type; auto max_units = device_->getInfo(); LOG(INFO) << "The chosen device has " << max_units << " compute units."; device_info_["CL_DEVICE_MAX_COMPUTE_UNITS"] = max_units; auto max_clock_freq = device_->getInfo(); LOG(INFO) << "CL_DEVICE_MAX_CLOCK_FREQUENCY:" << max_clock_freq; device_info_["CL_DEVICE_MAX_CLOCK_FREQUENCY"] = max_clock_freq; // ===================== MEMORY ===================== // CL_DEVICE_LOCAL_MEM_SIZE // CL_DEVICE_GLOBAL_MEM_CACHE_SIZE // CL_DEVICE_GLOBAL_MEM_CACHELINE_SIZE // CL_DEVICE_GLOBAL_MEM_SIZE auto local_mem_kb = static_cast(device_->getInfo()) / 1024; LOG(INFO) << "The local memory size of the chosen device is " << local_mem_kb << " KB."; device_info_["CL_DEVICE_LOCAL_MEM_SIZE_KB"] = local_mem_kb; auto global_mem_cache_size_kb = static_cast(device_->getInfo()) / 1024; LOG(INFO) << "CL_DEVICE_GLOBAL_MEM_CACHE_SIZE(KB):" << global_mem_cache_size_kb << " KB."; device_info_["CL_DEVICE_GLOBAL_MEM_CACHE_SIZE_KB"] = global_mem_cache_size_kb; auto global_mem_cacheline_size_kb = static_cast( device_->getInfo()) / 1024; LOG(INFO) << "CL_DEVICE_GLOBAL_MEM_CACHELINE_SIZE(KB):" << global_mem_cacheline_size_kb << " KB."; device_info_["CL_DEVICE_GLOBAL_MEM_CACHELINE_SIZE_KB"] = global_mem_cacheline_size_kb; auto global_mem_size_kb = static_cast(device_->getInfo()) / 1024; LOG(INFO) << "CL_DEVICE_GLOBAL_MEM_SIZE(KB):" << global_mem_size_kb << " KB."; device_info_["CL_DEVICE_GLOBAL_MEM_SIZE_KB"] = global_mem_size_kb; // ===================== WORK_GROUP ===================== // CL_DEVICE_MAX_WORK_GROUP_SIZE // CL_DEVICE_MAX_WORK_ITEM_DIMENSIONS // CL_DEVICE_MAX_WORK_ITEM_SIZES auto max_work_group_size = device_->getInfo(); LOG(INFO) << "CL_DEVICE_MAX_WORK_GROUP_SIZE:" << max_work_group_size; device_info_["CL_DEVICE_MAX_WORK_GROUP_SIZE"] = max_work_group_size; auto max_dims_num = device_->getInfo(); LOG(INFO) << "CL_DEVICE_MAX_WORK_ITEM_DIMENSIONS:" << max_dims_num; device_info_["CL_DEVICE_MAX_WORK_ITEM_DIMENSIONS"] = max_dims_num; auto max_work_item_sizes = device_->getInfo(); for (size_t i = 0; i < max_work_item_sizes.size(); ++i) { LOG(INFO) << "max_work_item_sizes[" << i << "]:" << max_work_item_sizes[i]; std::string dim_key = "CL_DEVICE_MAX_WORK_ITEM_SIZES_" + std::to_string(i); device_info_[dim_key] = max_work_item_sizes[i]; } // ===================== BUFFER ===================== // CL_DEVICE_MAX_CONSTANT_BUFFER_SIZE auto max_constant_buffer_size_kb = static_cast( device_->getInfo()) / 1024; LOG(INFO) << "CL_DEVICE_MAX_CONSTANT_BUFFER_SIZE:" << max_constant_buffer_size_kb; device_info_["CL_DEVICE_MAX_CONSTANT_BUFFER_SIZE"] = max_constant_buffer_size_kb; // ===================== IMAGE ===================== // CL_DEVICE_IMAGE_SUPPORT // CL_DEVICE_IMAGE2D_MAX_HEIGHT // CL_DEVICE_IMAGE2D_MAX_WIDTH auto image_support = device_->getInfo(); if (image_support) { LOG(INFO) << "The chosen device supports image processing."; device_info_["CL_DEVICE_IMAGE_SUPPORT"] = 1; } else { LOG(INFO) << "The chosen device doesn't support image processing!"; device_info_["CL_DEVICE_IMAGE_SUPPORT"] = 0; return false; } auto image2d_max_height = device_->getInfo(); LOG(INFO) << "CL_DEVICE_IMAGE2D_MAX_HEIGHT:" << image2d_max_height; device_info_["CL_DEVICE_IMAGE2D_MAX_HEIGHT"] = image2d_max_height; auto image2d_max_width = device_->getInfo(); LOG(INFO) << "CL_DEVICE_IMAGE2D_MAX_WIDTH:" << image2d_max_width; device_info_["CL_DEVICE_IMAGE2D_MAX_WIDTH"] = image2d_max_width; // ===================== OTHERS / EXTENSION / VERSION ===================== // CL_DEVICE_EXTENSIONS // CL_DEVICE_ADDRESS_BITS auto ext_data = device_->getInfo(); VLOG(4) << "The extensions supported by this device: " << ext_data; if (ext_data.find("cl_khr_fp16") != std::string::npos) { LOG(INFO) << "The chosen device supports the half data type."; device_info_["CL_DEVICE_EXTENSIONS_FP16"] = 1; } else { LOG(INFO) << "The chosen device doesn't support the half data type!"; device_info_["CL_DEVICE_EXTENSIONS_FP16"] = 0; } auto address_bits = device_->getInfo(); LOG(INFO) << "CL_DEVICE_ADDRESS_BITS:" << address_bits; device_info_["CL_DEVICE_ADDRESS_BITS"] = address_bits; auto driver_version = device_->getInfo(); LOG(INFO) << "CL_DRIVER_VERSION:" << driver_version; return true; } std::map& CLRuntime::GetDeviceInfo() { if (0 != device_info_.size()) { return device_info_; } InitializeDevice(); return device_info_; } } // namespace lite } // namespace paddle