]> git.djapps.eu Git - pkg/ggml/sources/ggml/commitdiff
tests : remove unused includes (#0)
authorGeorgi Gerganov <redacted>
Thu, 14 Aug 2025 10:41:03 +0000 (13:41 +0300)
committerGeorgi Gerganov <redacted>
Thu, 14 Aug 2025 11:17:28 +0000 (14:17 +0300)
tests/test-opt.cpp

index b267b8ab3735b22322d7bc4e4e44ee121fc75124..dc36b29eab361bf8daf45ae9f057fec69da2d967 100644 (file)
@@ -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 <cmath>
 #include <cinttypes>
+#include <cstring>
 #include <random>
 #include <string>
 #include <thread>
 #include <vector>
 
-#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;