Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .codespellrc
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,7 @@ skip = ./.git,./build,./third_party,*.svg,./scripts/spec_metadata
# codespell only flags words from its curated misspelling dictionary, but it is not
# language-aware. Add identifiers/terms that collide with real words here (comma-separated).
ignore-words-list = te,pevents
# ignore-words-list is case-insensitive; use ignore-regex for terms that are only
# valid in a specific case. NCE (Neural Compute Engine) is an acronym, but lowercase
# "nce" should still be caught as a typo for "once"/"nice".
ignore-regex = \bNCE\b
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
# Level zero loader changelog
## v1.33.0
* Update to L0 Zero Spec v1.18.31: https://oneapi-src.github.io/level-zero-spec/releases/index.html#level-zero-v1-18-31
* Feature: Driver Extension Callback Tracing (#498)
* Add missing tracing definitions into template (#503)
* Fix: incorrect translation of null handle in zet API (#505)
* Fix: spelling and grammar issues in headers and docs (#501)
* Update zel* functions to use (void) instead of () (#497)
* Add stdbool.h for C header inclusion correctness (#494)
* Fix: incompatible strerror_r for non-gnu/windows libc (#493)
## v1.32.0
* Update to L0 Zero Spec v1.17.24: https://oneapi-src.github.io/level-zero-spec/releases/index.html#level-zero-v1-17-24
* Fix: add .mako deduplication to prevent multiple to_string definitions
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if(MSVC AND (MSVC_VERSION LESS 1900))
endif()

# This project follows semantic versioning (https://semver.org/)
project(level-zero VERSION 1.32.0)
project(level-zero VERSION 1.33.0)
include(GNUInstallDirs)

find_package(Git)
Expand Down
4 changes: 2 additions & 2 deletions PRODUCT_GUID.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
1.32.0
a4421a67-b1bb-4abe-8b70-9081ccb07991
1.33.0
9aa8b76f-f86c-4b71-90b4-82b0dd7eb517
Loading
Loading