summaryrefslogtreecommitdiff
path: root/ggml-sycl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ggml-sycl.cpp')
-rw-r--r--ggml-sycl.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/ggml-sycl.cpp b/ggml-sycl.cpp
index 8839f775..d5384b2e 100644
--- a/ggml-sycl.cpp
+++ b/ggml-sycl.cpp
@@ -13512,6 +13512,10 @@ inline void ggml_sycl_op_concat(const ggml_tensor *src0,
const float *src0_dd, const float *src1_dd,
float *dst_dd,
const dpct::queue_ptr &main_stream) {
+#pragma message("TODO: generalize concat kernel for dim != 2")
+#pragma message(" https://github.com/ggerganov/llama.cpp/pull/7563")
+ int dim = dst->op_params[0];
+ GGML_ASSERT(dim != 2);
GGML_ASSERT(src0->type == GGML_TYPE_F32);
GGML_ASSERT(src1->type == GGML_TYPE_F32);