diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ed596fdf6e176e2c4ca739dc4112c3d2496a283..fd9b39b3911ada33aaa5f039d81831ea25315f6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ KleidiAI follows the [Semantic Versioning](https://semver.org/) specification fo ## Upcoming Release +## v1.12.0 + - New Advanced SIMD micro-kernels: - Matrix multiplication (MxN) Micro-kernels of QAI8DX LHS and QSI4CX RHS with BF16 output, optimized for FEAT_I8MM. - Matrix multiplication (1xN) Micro-kernels of QAI8DX LHS and QSI4CX RHS with BF16 output, optimized for FEAT_DotProd. @@ -30,6 +32,9 @@ KleidiAI follows the [Semantic Versioning](https://semver.org/) specification fo - kai_rhs_pack_nxk_qsi8cxp_qsi8cx_neon - Fixes - Update kai_kernel_matmul_clamp_f32_qai8dxp1vlx4_qsi8cxp4vlx4_1vlx4vl_sme2_mopa to improve accuracy + - Convert common SME/SME2 code into assembly file kai_common_sme_asm.S +- Documentation + - Added ONNX Runtime framework integration example ## v1.11.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index 86e5cf504fc7c789db3d6821bcafae48c6a55057..1146a801f5a708afb596185e6282347a261d00c3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.16) project(KleidiAI - VERSION 1.11.0 + VERSION 1.12.0 LANGUAGES C CXX ) diff --git a/kai/kai_common.h b/kai/kai_common.h index ad30c4cb4853e92353f1f741dafb399cef02f62e..4d6ac1738be6475320cb53905aa5f6b101dc03ec 100644 --- a/kai/kai_common.h +++ b/kai/kai_common.h @@ -61,7 +61,7 @@ extern "C" { /// /// @return Project version as a string literal. inline const char* kai_get_version(void) { - return "1.11.0"; + return "1.12.0"; } /// KleidiAI data types