File tree Expand file tree Collapse file tree 3 files changed +0
-11
lines changed Expand file tree Collapse file tree 3 files changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -181,7 +181,6 @@ option(GGML_VULKAN_MEMORY_DEBUG "ggml: enable Vulkan memory debug ou
181
181
option (GGML_VULKAN_SHADER_DEBUG_INFO "ggml: enable Vulkan shader debug info" OFF )
182
182
option (GGML_VULKAN_VALIDATE "ggml: enable Vulkan validation" OFF )
183
183
option (GGML_VULKAN_RUN_TESTS "ggml: run Vulkan tests" OFF )
184
- option (GGML_KOMPUTE "ggml: use Kompute" OFF )
185
184
option (GGML_METAL "ggml: use Metal" ${GGML_METAL_DEFAULT} )
186
185
option (GGML_METAL_USE_BF16 "ggml: use bfloat if available" OFF )
187
186
option (GGML_METAL_NDEBUG "ggml: disable Metal debugging" OFF )
@@ -266,7 +265,6 @@ set(GGML_PUBLIC_HEADERS
266
265
include /ggml-cann.h
267
266
include /ggml-cpp.h
268
267
include /ggml-cuda.h
269
- include /ggml-kompute.h
270
268
include /ggml-opt.h
271
269
include /ggml-metal.h
272
270
include /ggml-rpc.h
Original file line number Diff line number Diff line change @@ -365,7 +365,6 @@ ggml_add_backend(BLAS)
365
365
ggml_add_backend (CANN )
366
366
ggml_add_backend (CUDA )
367
367
ggml_add_backend (HIP )
368
- ggml_add_backend (Kompute )
369
368
ggml_add_backend (METAL )
370
369
ggml_add_backend (MUSA )
371
370
ggml_add_backend (RPC )
Original file line number Diff line number Diff line change 61
61
#include " ggml-cann.h"
62
62
#endif
63
63
64
- #ifdef GGML_USE_KOMPUTE
65
- #include " ggml-kompute.h"
66
- #endif
67
-
68
64
// disable C++17 deprecation warning for std::codecvt_utf8
69
65
#if defined(__clang__)
70
66
# pragma clang diagnostic push
@@ -189,9 +185,6 @@ struct ggml_backend_registry {
189
185
#ifdef GGML_USE_RPC
190
186
register_backend (ggml_backend_rpc_reg ());
191
187
#endif
192
- #ifdef GGML_USE_KOMPUTE
193
- register_backend (ggml_backend_kompute_reg ());
194
- #endif
195
188
#ifdef GGML_USE_CPU
196
189
register_backend (ggml_backend_cpu_reg ());
197
190
#endif
@@ -575,7 +568,6 @@ void ggml_backend_load_all_from_path(const char * dir_path) {
575
568
ggml_backend_load_best (" cann" , silent, dir_path);
576
569
ggml_backend_load_best (" cuda" , silent, dir_path);
577
570
ggml_backend_load_best (" hip" , silent, dir_path);
578
- ggml_backend_load_best (" kompute" , silent, dir_path);
579
571
ggml_backend_load_best (" metal" , silent, dir_path);
580
572
ggml_backend_load_best (" rpc" , silent, dir_path);
581
573
ggml_backend_load_best (" sycl" , silent, dir_path);
You can’t perform that action at this time.
0 commit comments