mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2025-09-11 01:24:36 +00:00
tests : remove unused includes (ggml/0)
This commit is contained in:
parent
810b9fc8b9
commit
8b2483730f
1 changed files with 2 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue