llama_cpp 0.9.4 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,20 +1,18 @@
1
+ #include "ggml.h"
1
2
  #include "ggml-opencl.h"
2
3
 
3
4
  #include <array>
4
5
  #include <atomic>
6
+ #include <cstdio>
7
+ #include <cstdlib>
8
+ #include <cstring>
9
+ #include <limits>
5
10
  #include <sstream>
6
11
  #include <vector>
7
- #include <limits>
8
12
 
9
13
  #define CL_TARGET_OPENCL_VERSION 110
10
14
  #include <clblast.h>
11
15
 
12
- #include <stdlib.h>
13
- #include <stdio.h>
14
- #include <string.h>
15
-
16
- #include "ggml.h"
17
-
18
16
  #if defined(_MSC_VER)
19
17
  #pragma warning(disable: 4244 4267) // possible loss of data
20
18
  #endif