From 155b78fbc248bdcabd40bafba6720146906c8096 Mon Sep 17 00:00:00 2001 From: Jamaika1 Date: Fri, 2 Jan 2026 12:43:46 +0100 Subject: [PATCH] Fix: added ``` common.cuh: In function 'const uint3 init_fastdiv_values(uint64_t)': common.cuh:755:56: error: incomplete type 'std::numeric_limits' used in nested name specifier 755 | GGML_ASSERT(d_64 <= std::numeric_limits::max()); | ^~~ ../ggml.h:283:30: note: in definition of macro 'GGML_ASSERT' 283 | #define GGML_ASSERT(x) if (!(x)) GGML_ABORT("GGML_ASSERT(%s) failed", #x) | ^ ``` --- ggml/src/ggml-cuda/common.cuh | 1 + 1 file changed, 1 insertion(+) diff --git a/ggml/src/ggml-cuda/common.cuh b/ggml/src/ggml-cuda/common.cuh index 62e61885..70be95f0 100644 --- a/ggml/src/ggml-cuda/common.cuh +++ b/ggml/src/ggml-cuda/common.cuh @@ -25,6 +25,7 @@ #include #include #include +#include #include #include #include