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_NORM_HPP
14#define GGML_SYCL_NORM_HPP
15
16#include "common.hpp"
17
18void ggml_sycl_op_norm(ggml_backend_sycl_context& ctx, ggml_tensor* dst);
19
20void ggml_sycl_op_rms_norm(ggml_backend_sycl_context& ctx, ggml_tensor* dst);
21
22void ggml_sycl_op_rms_norm_back(ggml_backend_sycl_context& ctx, ggml_tensor* dst);
23
24void ggml_sycl_op_group_norm(ggml_backend_sycl_context& ctx, ggml_tensor* dst);
25
26void ggml_sycl_op_l2_norm(ggml_backend_sycl_context& ctx, ggml_tensor* dst);
27
28#endif // GGML_SYCL_NORM_HPP