Skip to content

kballeda/level-zero

This branch is 200 commits behind oneapi-src/level-zero:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

32c4431 · Oct 6, 2022
Jan 19, 2022
Dec 16, 2021
Sep 24, 2020
Jul 20, 2022
Feb 25, 2022
Aug 30, 2022
Aug 30, 2022
Aug 14, 2020
Oct 6, 2022
May 10, 2022
Dec 1, 2020
Nov 5, 2021
Sep 28, 2022
Dec 1, 2020
Mar 6, 2020

Repository files navigation

oneAPI Level Zero

This repository contains the following components of oneAPI:

  • Copies of the Level Zero Specification API C/C++ header files
  • Level Zero Loader
  • Level Zero Validation Layer

This project is part of the larger oneAPI project.

See the oneAPI specification for more information about the oneAPI project.

See the Level Zero specification for more information about Level Zero.

See the Level Zero specification repo for contributing to the specification.

Level Zero API versions are listed in the ze_api_version_t enumeration, located in the ze_api.h file.

Building and Installing

Project is defined using CMake.

Linux

General

mkdir build
cd build
cmake ..
cmake --build . --config Release
cmake --build . --config Release --target package
cmake --build . --config Release --target install

Ubuntu with Docker

mkdir build
mkdir -p .ccache

docker run \
  --rm \
  -v $PWD:$PWD \
  -w $PWD/build \
  -e CCACHE_DIR=$PWD/.ccache \
  -e CCACHE_BASEDIR=$PWD \
  $(docker build -q \
      --build-arg UID=$(id -u) \
      --build-arg GID=$(id -g) \
      --build-arg IMAGE_VERSION=eoan \
      - < docker/build-ubuntu.Dockerfile) \
  cmake \
    -G Ninja \
    -D CMAKE_C_COMPILER_LAUNCHER=ccache \
    -D CMAKE_CXX_COMPILER_LAUNCHER=ccache \
    -D CMAKE_BUILD_TYPE=Release \
    ..

docker run \
  --rm \
  -v $PWD:$PWD \
  -w $PWD/build \
  -e CCACHE_DIR=$PWD/.ccache \
  -e CCACHE_BASEDIR=$PWD \
  $(docker build -q \
      --build-arg UID=$(id -u) \
      --build-arg GID=$(id -g) \
      --build-arg IMAGE_VERSION=eoan \
      - < docker/build-ubuntu.Dockerfile) \
  cmake --build . --config Release

Contributing

See CONTRIBUTING for more information.

License

Distributed under the MIT license. See LICENSE for more information.

Security

See Intel's Security Center for information on how to report a potential security issue or vulnerability.

See also SECURITY.

About

oneAPI Level Zero Specification Headers and Loader

Resources

License

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 59.3%
  • C 25.9%
  • Python 13.5%
  • Other 1.3%