Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 91a7a66

Browse files
committedMar 29, 2025
Fix missing includes
1 parent 7f9fd31 commit 91a7a66

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)
Please sign in to comment.