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