Skip to content

Commit 3775c50

Browse files
committed
sync : resolve conflicts (#0)
ggml-ci
1 parent 6ddff4d commit 3775c50

File tree

3 files changed

+0
-11
lines changed

3 files changed

+0
-11
lines changed

ggml/CMakeLists.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,6 @@ option(GGML_VULKAN_MEMORY_DEBUG "ggml: enable Vulkan memory debug ou
181181
option(GGML_VULKAN_SHADER_DEBUG_INFO "ggml: enable Vulkan shader debug info" OFF)
182182
option(GGML_VULKAN_VALIDATE "ggml: enable Vulkan validation" OFF)
183183
option(GGML_VULKAN_RUN_TESTS "ggml: run Vulkan tests" OFF)
184-
option(GGML_KOMPUTE "ggml: use Kompute" OFF)
185184
option(GGML_METAL "ggml: use Metal" ${GGML_METAL_DEFAULT})
186185
option(GGML_METAL_USE_BF16 "ggml: use bfloat if available" OFF)
187186
option(GGML_METAL_NDEBUG "ggml: disable Metal debugging" OFF)
@@ -266,7 +265,6 @@ set(GGML_PUBLIC_HEADERS
266265
include/ggml-cann.h
267266
include/ggml-cpp.h
268267
include/ggml-cuda.h
269-
include/ggml-kompute.h
270268
include/ggml-opt.h
271269
include/ggml-metal.h
272270
include/ggml-rpc.h

ggml/src/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,6 @@ ggml_add_backend(BLAS)
365365
ggml_add_backend(CANN)
366366
ggml_add_backend(CUDA)
367367
ggml_add_backend(HIP)
368-
ggml_add_backend(Kompute)
369368
ggml_add_backend(METAL)
370369
ggml_add_backend(MUSA)
371370
ggml_add_backend(RPC)

ggml/src/ggml-backend-reg.cpp

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,6 @@
6161
#include "ggml-cann.h"
6262
#endif
6363

64-
#ifdef GGML_USE_KOMPUTE
65-
#include "ggml-kompute.h"
66-
#endif
67-
6864
// disable C++17 deprecation warning for std::codecvt_utf8
6965
#if defined(__clang__)
7066
# pragma clang diagnostic push
@@ -189,9 +185,6 @@ struct ggml_backend_registry {
189185
#ifdef GGML_USE_RPC
190186
register_backend(ggml_backend_rpc_reg());
191187
#endif
192-
#ifdef GGML_USE_KOMPUTE
193-
register_backend(ggml_backend_kompute_reg());
194-
#endif
195188
#ifdef GGML_USE_CPU
196189
register_backend(ggml_backend_cpu_reg());
197190
#endif
@@ -575,7 +568,6 @@ void ggml_backend_load_all_from_path(const char * dir_path) {
575568
ggml_backend_load_best("cann", silent, dir_path);
576569
ggml_backend_load_best("cuda", silent, dir_path);
577570
ggml_backend_load_best("hip", silent, dir_path);
578-
ggml_backend_load_best("kompute", silent, dir_path);
579571
ggml_backend_load_best("metal", silent, dir_path);
580572
ggml_backend_load_best("rpc", silent, dir_path);
581573
ggml_backend_load_best("sycl", silent, dir_path);

0 commit comments

Comments
 (0)