From 934e414a08386f2dd05e0a9c616d6c6109ef5670 Mon Sep 17 00:00:00 2001 From: Yunus Kalkan Date: Mon, 14 Jul 2025 09:40:16 +0100 Subject: [PATCH] MLECO-6399: Update LLM module to latest version of onnxruntime-genai dependency * Update onnxruntime to the latest v1.22.1 * Update onnxruntime-genai to the latest v0.8.3 Change-Id: Ia3f550a13148633a7bab982112db291e99dcdeda Signed-off-by: Yunus Kalkan --- README.md | 4 ++-- src/cpp/frameworks/onnxruntime_genai/CMakeLists.txt | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5bafd25..bc5b4cc 100644 --- a/README.md +++ b/README.md @@ -111,8 +111,8 @@ onnxruntime-genai: - `ONNXRT_GENAI_GIT_URL`: Git URL to clone the sources from. - `ONNXRT_GENAI_GIT_TAG`: Git SHA for checkout. -> **NOTE**: This repository has been tested with `onnxruntime` version `v1.22.0` and -`onnxruntime-genai` version `v0.8.2`. +> **NOTE**: This repository has been tested with `onnxruntime` version `v1.22.1` and +`onnxruntime-genai` version `v0.8.3`. ## Quick start diff --git a/src/cpp/frameworks/onnxruntime_genai/CMakeLists.txt b/src/cpp/frameworks/onnxruntime_genai/CMakeLists.txt index 0528e41..abcda09 100644 --- a/src/cpp/frameworks/onnxruntime_genai/CMakeLists.txt +++ b/src/cpp/frameworks/onnxruntime_genai/CMakeLists.txt @@ -42,7 +42,7 @@ set(ONNX_BUILD_SHARED_LIBS OFF) set(ONNXRUNTIME_GIT_URL "https://github.com/microsoft/onnxruntime.git" CACHE STRING "Git URL for onnxruntime repo") -set(ONNXRUNTIME_GIT_TAG "v1.22.0" +set(ONNXRUNTIME_GIT_TAG "v1.22.1" CACHE STRING "Path where onnxruntime repo should be cloned") set(ONNXRUNTIME_SRC_DIR "${CMAKE_BINARY_DIR}/onnxruntime" @@ -113,8 +113,8 @@ set(ONNXRT_GENAI_SRC_DIR "${CMAKE_BINARY_DIR}/onnxruntime-genai" set(ONNXRT_GENAI_GIT_URL "https://github.com/microsoft/onnxruntime-genai.git" CACHE STRING "Git URL for onnxruntime-genai repo") -# Latest stable tag (June 2025) -set(ONNXRT_GENAI_GIT_TAG "v0.8.2" +# Latest stable tag (July 2025) +set(ONNXRT_GENAI_GIT_TAG "v0.8.3" CACHE STRING "Git tag / commit SHA for onnxruntime-genai repo") # -------------------------------------------------------------------- -- GitLab