diff options
Diffstat (limited to 'ggml-opencl.cpp')
-rw-r--r-- | ggml-opencl.cpp | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/ggml-opencl.cpp b/ggml-opencl.cpp index 202bcb48..496f9cdc 100644 --- a/ggml-opencl.cpp +++ b/ggml-opencl.cpp @@ -1,20 +1,18 @@ +#include "ggml.h" #include "ggml-opencl.h" #include <array> #include <atomic> +#include <cstdio> +#include <cstdlib> +#include <cstring> +#include <limits> #include <sstream> #include <vector> -#include <limits> #define CL_TARGET_OPENCL_VERSION 110 #include <clblast.h> -#include <stdlib.h> -#include <stdio.h> -#include <string.h> - -#include "ggml.h" - #if defined(_MSC_VER) #pragma warning(disable: 4244 4267) // possible loss of data #endif |