summaryrefslogtreecommitdiff
path: root/ggml-cuda/common.cuh
diff options
context:
space:
mode:
authorGeorgi Gerganov <ggerganov@gmail.com>2024-03-29 17:45:46 +0200
committerGitHub <noreply@github.com>2024-03-29 17:45:46 +0200
commitd48ccf3ad4fea5b9ede209c7f40be65371987bfe (patch)
tree3f3696b4064c0cb2943913e95e2d4032e3f9c615 /ggml-cuda/common.cuh
parent069574775cea67d8a977904e4d534aff47a671f4 (diff)
sync : ggml (#6351)
* sync : ggml ggml-ci * cuda : move GGML_CUDA_DMMV constants to dmmv.cuh --------- Co-authored-by: slaren <slarengh@gmail.com>
Diffstat (limited to 'ggml-cuda/common.cuh')
-rw-r--r--ggml-cuda/common.cuh7
1 files changed, 4 insertions, 3 deletions
diff --git a/ggml-cuda/common.cuh b/ggml-cuda/common.cuh
index 33c8ed1d..b98d7cbd 100644
--- a/ggml-cuda/common.cuh
+++ b/ggml-cuda/common.cuh
@@ -1,7 +1,8 @@
#pragma once
-#include "../ggml.h"
-#include "../ggml-cuda.h"
+#include "ggml.h"
+#include "ggml-cuda.h"
+
#include <memory>
#if defined(GGML_USE_HIPBLAS)
@@ -11,7 +12,7 @@
#define GGML_COMMON_DECL_CUDA
#define GGML_COMMON_IMPL_CUDA
#endif
-#include "../ggml-common.h"
+#include "ggml-common.h"
#include <cstdio>
#include <array>