1 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 76 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 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
|
// Copyright 2009-2021 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
/* detect Linux platform */
#if defined(linux) || defined(__linux__) || defined(__LINUX__)
# if !defined(__LINUX__)
# define __LINUX__
# endif
#endif
#if defined(__LINUX__)
#include <dlfcn.h>
#else
#include <windows.h>
#endif
#include "ze_wrapper.h"
#include <iostream>
#include <cstdio>
#include <cassert>
#include <mutex>
#include <string.h>
bool ZeWrapper::rtas_builder_selected = false;
static std::mutex zeWrapperMutex;
static void* handle = nullptr;
static decltype(zeMemFree)* zeMemFreeInternal = nullptr;
static decltype(zeMemAllocHost)* zeMemAllocHostInternal = nullptr;
static decltype(zeMemAllocDevice)* zeMemAllocDeviceInternal = nullptr;
static decltype(zeMemAllocShared)* zeMemAllocSharedInternal = nullptr;
static decltype(zeDriverGetExtensionProperties)* zeDriverGetExtensionPropertiesInternal = nullptr;
static decltype(zeDeviceGetProperties)* zeDeviceGetPropertiesInternal = nullptr;
static decltype(zeDeviceGetModuleProperties)* zeDeviceGetModulePropertiesInternal = nullptr;
static decltype(zeRTASBuilderCreateExp)* zeRTASBuilderCreateExpInternal = nullptr;
static decltype(zeRTASBuilderDestroyExp)* zeRTASBuilderDestroyExpInternal = nullptr;
static decltype(zeDriverRTASFormatCompatibilityCheckExp)* zeDriverRTASFormatCompatibilityCheckExpInternal = nullptr;
static decltype(zeRTASBuilderGetBuildPropertiesExp)* zeRTASBuilderGetBuildPropertiesExpInternal = nullptr;
static decltype(zeRTASBuilderBuildExp)* zeRTASBuilderBuildExpInternal = nullptr;
static decltype(zeRTASParallelOperationCreateExp)* zeRTASParallelOperationCreateExpInternal = nullptr;
static decltype(zeRTASParallelOperationDestroyExp)* zeRTASParallelOperationDestroyExpInternal = nullptr;
static decltype(zeRTASParallelOperationGetPropertiesExp)* zeRTASParallelOperationGetPropertiesExpInternal = nullptr;
static decltype(zeRTASParallelOperationJoinExp)* zeRTASParallelOperationJoinExpInternal = nullptr;
template<typename T>
T find_symbol(void* handle, std::string const& symbol) {
#if defined(__LINUX__)
T result = (T) dlsym(handle, symbol.c_str());
#else
T result = (T) GetProcAddress((HMODULE)handle, symbol.c_str());
#endif
if (!result) {
throw std::runtime_error("level_zero wrapper: symbol " + symbol + " not found");
}
return result;
}
void* load_module() {
#if defined(__LINUX__)
void* handle = dlopen(ZE_LOADER_NAME_LINUX,RTLD_LAZY);
if (!handle) {
throw std::runtime_error("module " ZE_LOADER_NAME_LINUX " not found");
}
#else
void* handle = LoadLibraryExA(ZE_LOADER_NAME_WINDOWS,NULL,LOAD_LIBRARY_SEARCH_SYSTEM32);
if (!handle) {
throw std::runtime_error("module " ZE_LOADER_NAME_WINDOWS " not found");
}
#endif
return handle;
}
void unload_module(void* handle) {
if (handle) {
#if defined(__LINUX__)
dlclose(handle);
#else
FreeLibrary((HMODULE)handle);
#endif
}
}
ZeWrapper::~ZeWrapper() {
unload_module(handle);
}
ze_result_t selectLevelZeroRTASBuilder(ze_driver_handle_t hDriver)
{
/* only select rtas builder once! */
if (ZeWrapper::rtas_builder_selected)
return ZE_RESULT_SUCCESS;
auto zeRTASBuilderCreateExpTemp = find_symbol<decltype(zeRTASBuilderCreateExp)*>(handle,"zeRTASBuilderCreateExp");
auto zeRTASBuilderDestroyExpTemp = find_symbol<decltype(zeRTASBuilderDestroyExp)*>(handle,"zeRTASBuilderDestroyExp");
ze_rtas_builder_exp_desc_t builderDesc = { ZE_STRUCTURE_TYPE_RTAS_BUILDER_EXP_DESC };
ze_rtas_builder_exp_handle_t hBuilder = nullptr;
ze_result_t err = zeRTASBuilderCreateExpTemp(hDriver, &builderDesc, &hBuilder);
/* when ZE_RESULT_ERROR_DEPENDENCY_UNAVAILABLE is reported extension cannot get loaded */
if (err == ZE_RESULT_ERROR_DEPENDENCY_UNAVAILABLE)
return err;
if (err == ZE_RESULT_SUCCESS)
zeRTASBuilderDestroyExpTemp(hBuilder);
zeRTASBuilderCreateExpInternal = zeRTASBuilderCreateExpTemp;
zeRTASBuilderDestroyExpInternal = zeRTASBuilderDestroyExpTemp;
zeDriverRTASFormatCompatibilityCheckExpInternal = find_symbol<decltype(zeDriverRTASFormatCompatibilityCheckExp)*>(handle,"zeDriverRTASFormatCompatibilityCheckExp");
zeRTASBuilderGetBuildPropertiesExpInternal = find_symbol<decltype(zeRTASBuilderGetBuildPropertiesExp)*>(handle,"zeRTASBuilderGetBuildPropertiesExp");
zeRTASBuilderBuildExpInternal = find_symbol<decltype(zeRTASBuilderBuildExp)*>(handle,"zeRTASBuilderBuildExp");
zeRTASParallelOperationCreateExpInternal = find_symbol<decltype(zeRTASParallelOperationCreateExp)*>(handle,"zeRTASParallelOperationCreateExp");
zeRTASParallelOperationDestroyExpInternal = find_symbol<decltype(zeRTASParallelOperationDestroyExp)*>(handle,"zeRTASParallelOperationDestroyExp");
zeRTASParallelOperationGetPropertiesExpInternal = find_symbol<decltype(zeRTASParallelOperationGetPropertiesExp)*>(handle,"zeRTASParallelOperationGetPropertiesExp");
zeRTASParallelOperationJoinExpInternal = find_symbol<decltype(zeRTASParallelOperationJoinExp)*>(handle,"zeRTASParallelOperationJoinExp");
ZeWrapper::rtas_builder_selected = true;
return ZE_RESULT_SUCCESS;
}
ze_result_t ZeWrapper::init()
{
std::lock_guard<std::mutex> lock(zeWrapperMutex);
if (handle)
return ZE_RESULT_SUCCESS;
try {
handle = load_module();
zeMemFreeInternal = find_symbol<decltype(zeMemFree)*>(handle, "zeMemFree");
zeMemAllocHostInternal = find_symbol<decltype(zeMemAllocHost)*>(handle, "zeMemAllocHost");
zeMemAllocDeviceInternal = find_symbol<decltype(zeMemAllocDevice)*>(handle, "zeMemAllocDevice");
zeMemAllocSharedInternal = find_symbol<decltype(zeMemAllocShared)*>(handle, "zeMemAllocShared");
zeDriverGetExtensionPropertiesInternal = find_symbol<decltype(zeDriverGetExtensionProperties)*>(handle, "zeDriverGetExtensionProperties");
zeDeviceGetPropertiesInternal = find_symbol<decltype(zeDeviceGetProperties)*>(handle, "zeDeviceGetProperties");
zeDeviceGetModulePropertiesInternal = find_symbol<decltype(zeDeviceGetModuleProperties)*>(handle, "zeDeviceGetModuleProperties");
}
catch (std::exception& e) {
return ZE_RESULT_ERROR_UNKNOWN;
}
return ZE_RESULT_SUCCESS;
}
ze_result_t ZeWrapper::initRTASBuilder(ze_driver_handle_t hDriver)
{
std::lock_guard<std::mutex> lock(zeWrapperMutex);
try {
return selectLevelZeroRTASBuilder(hDriver);
}
catch (std::exception& e) {
return ZE_RESULT_ERROR_UNKNOWN;
}
return ZE_RESULT_SUCCESS;
}
ze_result_t ZeWrapper::zeMemFree(ze_context_handle_t context, void* ptr)
{
if (!handle || !zeMemFreeInternal)
throw std::runtime_error("ZeWrapper not initialized, call ZeWrapper::init() first.");
return zeMemFreeInternal(context, ptr);
}
ze_result_t ZeWrapper::zeMemAllocHost(ze_context_handle_t context, const ze_host_mem_alloc_desc_t* desch, size_t s0, size_t s1, void** ptr)
{
if (!handle || !zeMemAllocHostInternal)
throw std::runtime_error("ZeWrapper not initialized, call ZeWrapper::init() first.");
return zeMemAllocHostInternal(context, desch, s0, s1, ptr);
}
ze_result_t ZeWrapper::zeMemAllocDevice(ze_context_handle_t context, const ze_device_mem_alloc_desc_t* descd, size_t s0, size_t s1, ze_device_handle_t ze_handle, void** ptr)
{
if (!handle || !zeMemAllocDeviceInternal)
throw std::runtime_error("ZeWrapper not initialized, call ZeWrapper::init() first.");
return zeMemAllocDeviceInternal(context, descd, s0, s1, ze_handle, ptr);
}
ze_result_t ZeWrapper::zeMemAllocShared(ze_context_handle_t context, const ze_device_mem_alloc_desc_t* descd, const ze_host_mem_alloc_desc_t* desch, size_t s0, size_t s1, ze_device_handle_t ze_handle, void** ptr)
{
if (!handle || !zeMemAllocSharedInternal)
throw std::runtime_error("ZeWrapper not initialized, call ZeWrapper::init() first.");
return zeMemAllocSharedInternal(context, descd, desch, s0, s1, ze_handle, ptr);
}
ze_result_t ZeWrapper::zeDriverGetExtensionProperties(ze_driver_handle_t ze_handle, uint32_t* ptr, ze_driver_extension_properties_t* props)
{
if (!handle || !zeDriverGetExtensionPropertiesInternal)
throw std::runtime_error("ZeWrapper not initialized, call ZeWrapper::init() first.");
return zeDriverGetExtensionPropertiesInternal(ze_handle, ptr, props);
}
#define VALIDATE(arg) \
{\
ze_result_t result = validate(arg);\
if (result != ZE_RESULT_SUCCESS) return result; \
}
ze_result_t validate(ze_device_handle_t hDevice)
{
if (hDevice == nullptr)
return ZE_RESULT_ERROR_INVALID_NULL_HANDLE;
return ZE_RESULT_SUCCESS;
}
ze_result_t validate(ze_rtas_device_exp_properties_t* pProperties)
{
if (pProperties == nullptr)
return ZE_RESULT_ERROR_INVALID_NULL_POINTER;
if (pProperties->stype != ZE_STRUCTURE_TYPE_RTAS_DEVICE_EXP_PROPERTIES)
return ZE_RESULT_ERROR_INVALID_ENUMERATION;
//if (!checkDescChain((zet_base_desc_t_*)pProperties))
//return ZE_RESULT_ERROR_INVALID_ENUMERATION;
return ZE_RESULT_SUCCESS;
}
ze_result_t ZeWrapper::zeDeviceGetProperties(ze_device_handle_t ze_handle, ze_device_properties_t* props)
{
if (!handle || !zeDeviceGetPropertiesInternal)
throw std::runtime_error("ZeWrapper not initialized, call ZeWrapper::init() first.");
return zeDeviceGetPropertiesInternal(ze_handle, props);
}
ze_result_t ZeWrapper::zeDeviceGetModuleProperties(ze_device_handle_t ze_handle, ze_device_module_properties_t* props)
{
if (!handle || !zeDeviceGetModulePropertiesInternal)
throw std::runtime_error("ZeWrapper not initialized, call ZeWrapper::init() first.");
return zeDeviceGetModulePropertiesInternal(ze_handle, props);
}
ze_result_t ZeWrapper::zeRTASBuilderCreateExp(ze_driver_handle_t hDriver, const ze_rtas_builder_exp_desc_t *pDescriptor, ze_rtas_builder_exp_handle_t *phBuilder)
{
if (!handle || !zeRTASBuilderCreateExpInternal)
throw std::runtime_error("ZeWrapper not initialized, call ZeWrapper::init() first.");
return zeRTASBuilderCreateExpInternal(hDriver,pDescriptor,phBuilder);
}
ze_result_t ZeWrapper::zeRTASBuilderDestroyExp(ze_rtas_builder_exp_handle_t hBuilder)
{
if (!handle || !zeRTASBuilderDestroyExpInternal)
throw std::runtime_error("ZeWrapper not initialized, call ZeWrapper::init() first.");
return zeRTASBuilderDestroyExpInternal(hBuilder);
}
ze_result_t ZeWrapper::zeDriverRTASFormatCompatibilityCheckExp( ze_driver_handle_t hDriver,
const ze_rtas_format_exp_t accelFormat,
const ze_rtas_format_exp_t otherAccelFormat)
{
if (!handle || !zeDriverRTASFormatCompatibilityCheckExpInternal)
throw std::runtime_error("ZeWrapper not initialized, call ZeWrapper::init() first.");
return zeDriverRTASFormatCompatibilityCheckExpInternal( hDriver, accelFormat, otherAccelFormat);
}
ze_result_t ZeWrapper::zeRTASBuilderGetBuildPropertiesExp(ze_rtas_builder_exp_handle_t hBuilder,
const ze_rtas_builder_build_op_exp_desc_t* args,
ze_rtas_builder_exp_properties_t* pProp)
{
if (!handle || !zeRTASBuilderGetBuildPropertiesExpInternal)
throw std::runtime_error("ZeWrapper not initialized, call ZeWrapper::init() first.");
return zeRTASBuilderGetBuildPropertiesExpInternal(hBuilder, args, pProp);
}
ze_result_t ZeWrapper::zeRTASBuilderBuildExp(ze_rtas_builder_exp_handle_t hBuilder,
const ze_rtas_builder_build_op_exp_desc_t* args,
void *pScratchBuffer, size_t scratchBufferSizeBytes,
void *pRtasBuffer, size_t rtasBufferSizeBytes,
ze_rtas_parallel_operation_exp_handle_t hParallelOperation,
void *pBuildUserPtr, ze_rtas_aabb_exp_t *pBounds, size_t *pRtasBufferSizeBytes)
{
if (!handle || !zeRTASBuilderBuildExpInternal)
throw std::runtime_error("ZeWrapper not initialized, call ZeWrapper::init() first.");
return zeRTASBuilderBuildExpInternal(hBuilder, args, pScratchBuffer, scratchBufferSizeBytes, pRtasBuffer, rtasBufferSizeBytes,
hParallelOperation, pBuildUserPtr, pBounds, pRtasBufferSizeBytes);
}
ze_result_t ZeWrapper::zeRTASParallelOperationCreateExp(ze_driver_handle_t hDriver, ze_rtas_parallel_operation_exp_handle_t* phParallelOperation)
{
if (!handle || !zeRTASParallelOperationCreateExpInternal)
throw std::runtime_error("ZeWrapper not initialized, call ZeWrapper::init() first.");
return zeRTASParallelOperationCreateExpInternal(hDriver, phParallelOperation);
}
ze_result_t ZeWrapper::zeRTASParallelOperationDestroyExp( ze_rtas_parallel_operation_exp_handle_t hParallelOperation )
{
if (!handle || !zeRTASParallelOperationDestroyExpInternal)
throw std::runtime_error("ZeWrapper not initialized, call ZeWrapper::init() first.");
return zeRTASParallelOperationDestroyExpInternal( hParallelOperation );
};
ze_result_t ZeWrapper::zeRTASParallelOperationGetPropertiesExp( ze_rtas_parallel_operation_exp_handle_t hParallelOperation, ze_rtas_parallel_operation_exp_properties_t* pProperties )
{
if (!handle || !zeRTASParallelOperationGetPropertiesExpInternal)
throw std::runtime_error("ZeWrapper not initialized, call ZeWrapper::init() first.");
return zeRTASParallelOperationGetPropertiesExpInternal( hParallelOperation, pProperties );
}
ze_result_t ZeWrapper::zeRTASParallelOperationJoinExp( ze_rtas_parallel_operation_exp_handle_t hParallelOperation)
{
if (!handle || !zeRTASParallelOperationJoinExpInternal)
throw std::runtime_error("ZeWrapper not initialized, call ZeWrapper::init() first.");
return zeRTASParallelOperationJoinExpInternal(hParallelOperation);
}
|