Skip to content

Commit 8b24837

Browse files
committed
tests : remove unused includes (ggml/0)
1 parent 810b9fc commit 8b24837

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tests/test-opt.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,16 @@
55
#include "ggml-backend.h"
66
#include "ggml-cpu.h"
77
#include "ggml-opt.h"
8-
#include "../ggml/src/ggml-impl.h"
9-
#include "../common/common.h"
108

119
#include <cmath>
1210
#include <cinttypes>
11+
#include <cstring>
1312
#include <random>
1413
#include <string>
1514
#include <thread>
1615
#include <vector>
1716

18-
#define TEST_LOG(...) GGML_LOG_DEBUG(__VA_ARGS__)
17+
#define TEST_LOG(...) printf(__VA_ARGS__)
1918

2019
static bool almost_equal(const double a, const double b, const double atol) {
2120
return fabs(a - b) < atol;

0 commit comments

Comments
 (0)