From 9aed0dee08833d03048e6d992a51cd9e5eae6781 Mon Sep 17 00:00:00 2001 From: Mikko Tiihonen Date: Thu, 7 Dec 2023 01:11:05 +0200 Subject: [PATCH] feat: Add support for 7840U iGPU type (#960) rocminfo reports that my AMD Ryzen 7 PRO 7840U w/ Radeon 780M Graphics GPU version is gfx1103 --- crates/llama-cpp-bindings/build.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/llama-cpp-bindings/build.rs b/crates/llama-cpp-bindings/build.rs index f9b825a..b4e09f6 100644 --- a/crates/llama-cpp-bindings/build.rs +++ b/crates/llama-cpp-bindings/build.rs @@ -49,6 +49,7 @@ fn main() { "gfx1100", "gfx1101", "gfx1102", + "gfx1103", ]; let rocm_root = env::var("ROCM_ROOT").unwrap_or("/opt/rocm".to_string());