From 393a7efc9e0a56e6d2263dc386196c229623b6a5 Mon Sep 17 00:00:00 2001 From: Morgan Funtowicz Date: Thu, 6 Feb 2025 09:38:06 +0100 Subject: [PATCH] backend(trtllm): link against CUDA 12.8 --- backends/trtllm/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backends/trtllm/build.rs b/backends/trtllm/build.rs index aa613fd6dd9..c9918e2c52b 100644 --- a/backends/trtllm/build.rs +++ b/backends/trtllm/build.rs @@ -7,7 +7,7 @@ use std::sync::LazyLock; const ADDITIONAL_BACKEND_LINK_LIBRARIES: [&str; 1] = ["spdlog"]; const CUDA_ARCH_LIST: Option<&str> = option_env!("CUDA_ARCH_LIST"); -const CUDA_REQUIRED_VERSION: &str = "12.6"; +const CUDA_REQUIRED_VERSION: &str = "12.8"; const MPI_REQUIRED_VERSION: &str = "4.1"; const INSTALL_PREFIX: Option<&str> = option_env!("CMAKE_INSTALL_PREFIX"); const TENSORRT_ROOT_DIR: Option<&str> = option_env!("TENSORRT_ROOT_DIR");