2024-07-02 02:16:00 +00:00
|
|
|
//
|
|
|
|
// MIT license
|
|
|
|
// Copyright (C) 2024 Intel Corporation
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
//
|
|
|
|
|
|
|
|
//
|
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef GGML_SYCL_NORM_HPP
|
|
|
|
#define GGML_SYCL_NORM_HPP
|
|
|
|
|
|
|
|
#include "common.hpp"
|
|
|
|
|
2025-03-31 14:55:24 +05:30
|
|
|
void ggml_sycl_op_norm(ggml_backend_sycl_context& ctx, ggml_tensor* dst);
|
|
|
|
|
|
|
|
void ggml_sycl_op_rms_norm(ggml_backend_sycl_context& ctx, ggml_tensor* dst);
|
|
|
|
|
|
|
|
void ggml_sycl_op_group_norm(ggml_backend_sycl_context& ctx, ggml_tensor* dst);
|
|
|
|
|
|
|
|
void ggml_sycl_op_l2_norm(ggml_backend_sycl_context& ctx, ggml_tensor* dst);
|
2025-03-18 07:27:50 +08:00
|
|
|
|
2024-07-02 02:16:00 +00:00
|
|
|
#endif // GGML_SYCL_NORM_HPP
|