mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2025-08-14 12:19:48 -04:00
* SYCL: refactor ggml_sycl_compute_forward * SYCL: add back GGML_USED(dst) to ggml_sycl_cpy * SYCL: add function name to noop debug * SYCL: Some device info print refactoring and add details of XMX availability
11 lines
197 B
C++
11 lines
197 B
C++
#ifndef GGML_SYCL_OUTPROD_HPP
|
|
#define GGML_SYCL_OUTPROD_HPP
|
|
|
|
#include "common.hpp"
|
|
|
|
void ggml_sycl_op_out_prod(ggml_backend_sycl_context& ctx, ggml_tensor* dst);
|
|
|
|
|
|
#endif // GGML_SYCL_OUTPROD_HPP
|
|
|