From b333b06772c89d96aacb5490d6a219fba7c09cc6 Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Thu, 12 Feb 2026 20:57:17 +0100 Subject: Engage! --- llama.cpp/ggml/src/ggml-sycl/sycl_hw.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 llama.cpp/ggml/src/ggml-sycl/sycl_hw.cpp (limited to 'llama.cpp/ggml/src/ggml-sycl/sycl_hw.cpp') diff --git a/llama.cpp/ggml/src/ggml-sycl/sycl_hw.cpp b/llama.cpp/ggml/src/ggml-sycl/sycl_hw.cpp new file mode 100644 index 0000000..7041140 --- /dev/null +++ b/llama.cpp/ggml/src/ggml-sycl/sycl_hw.cpp @@ -0,0 +1,15 @@ +#include "sycl_hw.hpp" + +// TODO: currently not used +/* +sycl_hw_info get_device_hw_info(sycl::device *device_ptr) { + sycl_hw_info res; + int32_t id = device_ptr->get_info(); + res.device_id = id; + + syclex::architecture arch = device_ptr->get_info(); + res.arch = arch; + + return res; +} +*/ -- cgit v1.2.3