Skip to content

Commit ece9745

Browse files
authored
SYCL: Move CPY kernels to a separate file and add few missing kernels (#12133)
* SYCL: refactor and move cpy kernels to a separate file * Add few missing cpy kernels * refactor and add debug logs
1 parent cc473ca commit ece9745

File tree

5 files changed

+739
-466
lines changed

5 files changed

+739
-466
lines changed

ggml/src/ggml-sycl/backend.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
#include "wkv6.hpp"
3030
#include "outprod.hpp"
3131
#include "element_wise.hpp"
32+
#include "cpy.hpp"
3233
#include "gla.hpp"
3334

3435
#endif // GGML_SYCL_BACKEND_HPP

ggml/src/ggml-sycl/common.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
#pragma clang diagnostic ignored "-Wnested-anon-types"
3535
#include "ggml-common.h"
3636
#pragma clang diagnostic pop
37+
#include "ggml-impl.h"
3738

3839
void* ggml_sycl_host_malloc(size_t size);
3940
void ggml_sycl_host_free(void* ptr);

0 commit comments

Comments
 (0)