2025-02-24 22:33:23 +08: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_GETROWS_HPP
|
|
|
|
#define GGML_SYCL_GETROWS_HPP
|
|
|
|
|
|
|
|
#include "common.hpp"
|
|
|
|
|
2025-03-31 14:55:24 +05:30
|
|
|
void ggml_sycl_op_get_rows(ggml_backend_sycl_context & ctx, ggml_tensor *dst);
|
2025-02-24 22:33:23 +08:00
|
|
|
|
|
|
|
#endif // GGML_SYCL_GETROWS_HPP
|