From 8b2483730f90d6f23e2b188a54a210498bba937f Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Thu, 14 Aug 2025 13:41:03 +0300 Subject: [PATCH] tests : remove unused includes (ggml/0) --- tests/test-opt.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/test-opt.cpp b/tests/test-opt.cpp index b267b8ab3..dc36b29ea 100644 --- a/tests/test-opt.cpp +++ b/tests/test-opt.cpp @@ -5,17 +5,16 @@ #include "ggml-backend.h" #include "ggml-cpu.h" #include "ggml-opt.h" -#include "../ggml/src/ggml-impl.h" -#include "../common/common.h" #include #include +#include #include #include #include #include -#define TEST_LOG(...) GGML_LOG_DEBUG(__VA_ARGS__) +#define TEST_LOG(...) printf(__VA_ARGS__) static bool almost_equal(const double a, const double b, const double atol) { return fabs(a - b) < atol;