We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d65b660 commit 768e223Copy full SHA for 768e223
tests/test-opt.cpp
@@ -5,8 +5,6 @@
5
#include "ggml-backend.h"
6
#include "ggml-cpu.h"
7
#include "ggml-opt.h"
8
-#include "../ggml/src/ggml-impl.h"
9
-#include "../common/common.h"
10
11
#include <cmath>
12
#include <cinttypes>
@@ -15,7 +13,7 @@
15
13
#include <thread>
16
14
#include <vector>
17
18
-#define TEST_LOG(...) GGML_LOG_DEBUG(__VA_ARGS__)
+#define TEST_LOG(...) printf(__VA_ARGS__)
19
20
static bool almost_equal(const double a, const double b, const double atol) {
21
return fabs(a - b) < atol;
0 commit comments