2024-06-15 06:05:10 +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_BACKEND_HPP
|
|
|
|
#define GGML_SYCL_BACKEND_HPP
|
|
|
|
|
|
|
|
#include "common.hpp"
|
2024-06-19 01:11:51 +00:00
|
|
|
#include "convert.hpp"
|
|
|
|
#include "dequantize.hpp"
|
|
|
|
#include "dmmv.hpp"
|
|
|
|
#include "mmq.hpp"
|
|
|
|
#include "mmvq.hpp"
|
2024-07-01 11:39:06 +00:00
|
|
|
#include "rope.hpp"
|
2024-07-02 02:16:00 +00:00
|
|
|
#include "norm.hpp"
|
2024-06-15 06:05:10 +00:00
|
|
|
|
|
|
|
#endif // GGML_SYCL_BACKEND_HPP
|