https://github.com/beehive-lab/levelzero-jni
Intel LevelZero JNI library for TornadoVM
Science Score: 13.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (10.9%) to scientific vocabulary
Keywords
Repository
Intel LevelZero JNI library for TornadoVM
Basic Info
Statistics
- Stars: 12
- Watchers: 7
- Forks: 6
- Open Issues: 0
- Releases: 5
Topics
Metadata Files
README.md
Beehive LevelZero JNI
Baremetal GPU and FPGA programming for Java using Intel's Level Zero API. This project is a Java Native Interface (JNI) binding for Intel's Level Zero. This library is designed to be as closed as possible to the Level Zero API for C++ API, and it supports a subset of the Level Zero 1.4.0 API (Level Zero as in May 2022). This library is used by TornadoVM, and the subset of the Level Zero API 1.4.0 is the minimum required to dispatch SPIR-V kernels on Intel ARC and Intel integrated GPUs under the TornadoVM Runtime. It is, by no means, a complete port of the Level Zero API, but external contributions are very welcome.
Compilation & configuration of the JNI Level Zero API
1) Compile Native Library: Level Zero API
Linux (Tested for Fedora 35-39 and Ubuntu 22.X-24.X)
bash
git clone https://github.com/oneapi-src/level-zero.git
cd level-zero
mkdir build
cd build
cmake ..
cmake --build . --config Release
cmake --build . --config Release --target package
Windows 10/11
Tested Configurations: - Lenovo IdeaPad Gaming 3 15IHU6 - Dell XPS 8950 - Windows 11 - VS Community 2022 + components: C++, Git, Spectre mitigated libraries - CMake 3.26.3, Maven 3.9.1, JDK 21+
Run commands in x64 Native Tools Command Prompt for VS 2022.
```cmd git clone https://github.com/oneapi-src/level-zero cd level-zero md build cd build cmake .. cmake --build . --config Release
rem check .\bin\Release\zello_world.exe ```
Note: If zello_world.exe fails, search for existing Level Zero API DLLs (file names start with ze_, e.g. ze_tracing_layer.dll) in c:\windows\system32 and move them to another folder.
2) Compile Level Zero Java JNI native code
Set the paths to the directory of Level Zero installation. Here are examples:
Linux
bash
scl enable devtoolset-9 bash # << Only for CentOS/RHEL
git clone https://github.com/beehive-lab/levelzero-jni
export ZE_SHARED_LOADER="<path-to-levelzero>/build/lib/libze_loader.so"
export CPLUS_INCLUDE_PATH=<path-to-levelzero>/include:$CPLUS_INCLUDE_PATH
export C_INCLUDE_PATH=<path-to-levelzero>/include:$CPLUS_INCLUDE_PATH
cd levelzero-jni/levelZeroLib
mkdir build
cd build
cmake ..
make
Windows 10/11
Note: Run commands in x64 Native Tools Command Prompt for VS 2022.
```cmd git clone https://github.com/beehive-lab/levelzero-jni set ZESHAREDLOADER=%USERPROFILE%\lab\level-zero\build\lib\release\zeloader.lib set CPLUSINCLUDEPATH=%USERPROFILE%\lab\level-zero\include set CINCLUDE_PATH=%USERPROFILE%\lab\level-zero\include
rem add the folder with Intel's Level Zero API DLLs to PATH set PATH=%USERPROFILE%\lab\level-zero\build\bin\release;%PATH%
cd levelzero-jni\levelZeroLib md build cd build cmake .. cmake --build . --config Release ```
Obtain a SPIR-V compiler (Linux and Windows)
In case you want to compile kernels from OpenCL C to SPIR-V and use the Level Zero API, you need to download the llvm-spirv compiler. The implementation we are currently using is Intel LLVM.
3) Compile the Java Library and Run Tests
Linux
bash
mvn clean package
./scripts/run.sh ## < This script compiles an OpenCL C program to SPIR-V using the llvm-spirv compiler (see 2.1)
The OpenCL C kernel provided for this example is as follows:
c
__kernel void copyData(__global int* input, __global int* output) {
uint idx = get_global_id(0);
output[idx] = input[idx];
}
To compile from OpenCL C to SPIR-V:
bash
clang -cc1 -triple spir copyData.cl -O0 -finclude-default-header -emit-llvm-bc -o copyData.bc
llvm-spirv copyData.bc -o copyData.spv
Windows
Note: Java programs that use levelzero-jni are based on DLLs, which are provided by Intel's Level Zero API. For these programs to find these DLLs, the PATH environment variable must contain the folder that contains the DLLs.
```cmd mvn clean package
rem add the folder with Intel's Level Zero API DLLs to PATH set PATH=%USERPROFILE%\lab\level-zero\build\bin\release;%PATH%
rem copyData.spv file expected in CWD .\scripts\run.cmd
more tests
.\scripts\copies.cmd .\scripts\events.cmd .\scripts\fences.cmd .\scripts\kernelTimers.cmd .\scripts\transferTimers.cmd .\scripts\largeBuffers.cmd .\scripts\testZelloWorld.cmd ```
Some Examples
Instance Driver Pointer
```java // Obtain the Level Zero Driver LevelZeroDriver driver = new LevelZeroDriver(); int result = driver.zeInit(ZeInitFlag.ZEINITFLAGGPUONLY); LevelZeroUtils.errorLog("zeInit", result);
int[] numDrivers = new int[1]; result = driver.zeDriverGet(numDrivers, null); LevelZeroUtils.errorLog("zeDriverGet", result);
ZeDriverHandle driverHandler = new ZeDriverHandle(numDrivers[0]); result = driver.zeDriverGet(numDrivers, driverHandler); LevelZeroUtils.errorLog("zeDriverGet", result); ```
Create Level Zero Context
java
ZeContextDescriptor contextDescription = new ZeContextDescriptor();
LevelZeroContext context = new LevelZeroContext(driverHandler, contextDescription);
result = context.zeContextCreate(driverHandler.getZe_driver_handle_t_ptr()[0]);
LevelZeroUtils.errorLog("zeContextCreate", result);
Allocate Shared Memory:
```java ZeDeviceMemAllocDescriptor deviceMemAllocDesc = new ZeDeviceMemAllocDescriptor(); deviceMemAllocDesc.setFlags(ZeDeviceMemAllocFlags.ZEDEVICEMEMALLOCFLAGBIASUNCACHED);
ZeHostMemAllocDescriptor hostMemAllocDesc = new ZeHostMemAllocDescriptor(); hostMemAllocDesc.setFlags(ZeHostMemAllocFlags.ZEHOSTMEMALLOCFLAGBIASUNCACHED);
LevelZeroBufferInteger bufferA = new LevelZeroBufferInteger(); result = context.zeMemAllocShared(context.getContextHandle().getContextPtr()[0], deviceMemAllocDesc, hostMemAllocDesc, bufferSize, 1, device.getDeviceHandlerPtr(), bufferA); LevelZeroUtils.errorLog("zeMemAllocShared", result); ```
See the full list of examples here.
License
This project is developed at The University of Manchester, and it is fully open source under the MIT license.
Acknowledgments
The work was partially funded by the EU Horizon 2020 Elegant 957286 project, and Intel Coorporation.
Owner
- Name: Beehive lab
- Login: beehive-lab
- Kind: organization
- Location: United Kingdom
- Website: http://apt.cs.manchester.ac.uk/
- Repositories: 38
- Profile: https://github.com/beehive-lab
Beehive lab is part of the Advanced Processor Technologies Group at the University of Manchester specializing in hw/sw codesign.
GitHub Events
Total
- Watch event: 1
Last Year
- Watch event: 1
Dependencies
- junit:junit 4.13.1 test