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 810b9fc commit 8b24837Copy full SHA for 8b24837
tests/test-opt.cpp
@@ -5,17 +5,16 @@
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>
+#include <cstring>
13
#include <random>
14
#include <string>
15
#include <thread>
16
#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