summaryrefslogtreecommitdiff
path: root/llama.cpp/ggml/src/ggml-sycl/backend.hpp
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2026-02-12 20:57:17 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2026-02-12 20:57:17 +0100
commitb333b06772c89d96aacb5490d6a219fba7c09cc6 (patch)
tree211df60083a5946baa2ed61d33d8121b7e251b06 /llama.cpp/ggml/src/ggml-sycl/backend.hpp
downloadllmnpc-b333b06772c89d96aacb5490d6a219fba7c09cc6.tar.gz
Engage!
Diffstat (limited to 'llama.cpp/ggml/src/ggml-sycl/backend.hpp')
-rw-r--r--llama.cpp/ggml/src/ggml-sycl/backend.hpp45
1 files changed, 45 insertions, 0 deletions
diff --git a/llama.cpp/ggml/src/ggml-sycl/backend.hpp b/llama.cpp/ggml/src/ggml-sycl/backend.hpp
new file mode 100644
index 0000000..75657f3
--- /dev/null
+++ b/llama.cpp/ggml/src/ggml-sycl/backend.hpp
@@ -0,0 +1,45 @@
1//
2// MIT license
3// Copyright (C) 2024 Intel Corporation
4// SPDX-License-Identifier: MIT
5//
6
7//
8// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
9// See https://llvm.org/LICENSE.txt for license information.
10// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
11//
12
13#ifndef GGML_SYCL_BACKEND_HPP
14#define GGML_SYCL_BACKEND_HPP
15
16#include "binbcast.hpp"
17#include "common.hpp"
18#include "concat.hpp"
19#include "conv.hpp"
20#include "convert.hpp"
21#include "count-equal.hpp"
22#include "cpy.hpp"
23#include "dequantize.hpp"
24#include "dmmv.hpp"
25#include "element_wise.hpp"
26#include "gla.hpp"
27#include "im2col.hpp"
28#include "mmq.hpp"
29#include "mmvq.hpp"
30#include "norm.hpp"
31#include "outprod.hpp"
32#include "pad.hpp"
33#include "quantize.hpp"
34#include "quants.hpp"
35#include "roll.hpp"
36#include "rope.hpp"
37#include "set_rows.hpp"
38#include "ssm_conv.hpp"
39#include "softmax.hpp"
40#include "tsembd.hpp"
41#include "wkv.hpp"
42#include "pad_reflect_1d.hpp"
43
44
45#endif // GGML_SYCL_BACKEND_HPP