level-zero icon indicating copy to clipboard operation
level-zero copied to clipboard

oneAPI Level Zero Specification Headers and Loader

Results 104 level-zero issues
Sort by recently updated
recently updated
newest added

The following errors occur when trying to set clang-cl.exe instead of cl.exe as host compiler: ``` [1/39] Building CXX object source\CMakeFiles\ze_loader.dir\lib\ze_libapi.cpp.obj FAILED: source/CMakeFiles/ze_loader.dir/lib/ze_libapi.cpp.obj C:\PROGRA~1\LLVM\bin\clang-cl.exe /nologo -TP -DL0_LOADER_VERSION=\"1\" -DL0_VALIDATION_LAYER_SUPPORTED_VERSION=\"1\" -Dze_loader_EXPORTS -ID:\a\llvm\llvm\build\tools\sycl\plugins\level_zero\level_zero\level_zero_loader\include...

Hi all, is there any documentation of CHANGELOG that explains the differences between different versions in the oneAPI LevelZero SPEC? I see the latest now is 1.3.7.: https://spec.oneapi.io/level-zero/latest/index.html#l0-full-name-l0-spec-version Thank you

When running this code (as provided in the `zello_world.cpp` [example](https://github.com/oneapi-src/level-zero/blob/master/samples/zello_world/zello_world.cpp): ```cpp ze_api_version_t version = {}; zeDriverGetApiVersion(pDriver, &version); std::cout

Maybe just a clarification is needed. But I see this in the specification: https://spec.oneapi.io/level-zero/latest/core/PROG.html#sub-device-support > ** a sub-device can be partitioned into more sub-devices; e.g. down to a single slice.**...

The CMakeLists.txt file suggests that the main headers are installed to `/include/level_zero/` which would imply that users should `#include ` instead of `#include `. However, the documentation (https://spec.oneapi.com/level-zero/latest/core/INTRO.html#application-binary-interface) states that...

Neither core, nor sysman device structures provide the device file name that corresponds to the L0 device. This information would be useful e.g. with GPU metrics providers running under Kubernetes...

Following the spec: https://spec.oneapi.com/level-zero/latest/core/INTRO.html Level-zero SPEC also works for spatial architectures. When looking at the `zeInit` function (https://github.com/oneapi-src/level-zero/blob/master/include/ze_api.h#L567), the current implementation only supports GPU. ```c++ typedef enum _ze_init_flag_t { ZE_INIT_FLAG_GPU_ONLY...

Hi all, I wonder if there is any call in LevelZero API equivalent to `clGetEventProfilingInfo` from OpenCL: https://www.khronos.org/registry/OpenCL/sdk/2.1/docs/man/xhtml/clGetEventProfilingInfo.html What I would like to do is to measure the data transfer...

I tried to write a simple tool that I can load with LD_PRELOAD (in the spirit of MPI tools for example, or OpenCL interposers). It seems to initialize OK but...

When I run "./zello_world" in ubuntu 21.04 terminal, the system prompts me: "Did NOT find matching ZE_DEVICE_TYPE_GPU" device!". Where can I download and install the driver?