mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2025-11-08 10:07:01 +00:00
* SYCL/SET: implement operator + wire-up; docs/ops updates; element_wise & ggml-sycl changes * sycl(SET): re-apply post-rebase; revert manual docs/ops.md; style cleanups * move SET op to standalone file, GPU-only implementation * Update SYCL SET operator for F32 * ci: fix editorconfig issues (LF endings, trailing spaces, final newline) * fixed ggml-sycl.cpp --------- Co-authored-by: Gitty Burstein <gitty@example.com>
6 lines
130 B
C++
6 lines
130 B
C++
#pragma once
|
|
#include "backend.hpp"
|
|
#include "ggml.h"
|
|
|
|
void ggml_sycl_op_set(ggml_backend_sycl_context & ctx, ggml_tensor * dst);
|