Skip to content

Commit 4ec74a9

Browse files
committed
Fix missing includes
1 parent 5d826ae commit 4ec74a9

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

imatrix.cpp

+1-4
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,7 @@
66
#include "ggml.h"
77
#include "util.h"
88

9-
#include <fstream>
10-
#include <mutex>
11-
#include <unordered_map>
12-
#include <string>
9+
#include <cmath>
1310

1411
// remove any prefix and suffixes from the name
1512
// CUDA0#blk.0.attn_k.weight#0 => blk.0.attn_k.weight

imatrix.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#include <mutex>
55
#include <unordered_map>
66
#include <string>
7+
#include <vector>
78

89
/*Stolen from llama.cpp (credits: Kawrakow)*/
910

0 commit comments

Comments
 (0)