File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ option(GGML_CUDA_FA_ALL_QUANTS "ggml: compile all quants for FlashA
153153option (GGML_CUDA_GRAPHS "ggml: use CUDA graphs (llama.cpp only)" ${GGML_CUDA_GRAPHS_DEFAULT} )
154154
155155option (GGML_HIP "ggml: use HIP" OFF )
156- option (GGML_HIP_GRAPH "ggml: use HIP graph, expiramental , slow" OFF )
156+ option (GGML_HIP_GRAPHS "ggml: use HIP graph, experimental , slow" OFF )
157157option (GGML_HIP_UMA "ggml: use HIP unified memory architecture" OFF )
158158option (GGML_VULKAN "ggml: use Vulkan" OFF )
159159option (GGML_VULKAN_CHECK_RESULTS "ggml: run Vulkan op checks" OFF )
Original file line number Diff line number Diff line change @@ -588,7 +588,7 @@ struct ggml_tensor_extra_gpu {
588588};
589589
590590
591- #if ((CUDART_VERSION >= 12000) && defined(GGML_CUDA_USE_GRAPHS)) || defined(GGML_HIP_GRAPH )
591+ #if ((CUDART_VERSION >= 12000) && defined(GGML_CUDA_USE_GRAPHS)) || defined(GGML_HIP_GRAPHS )
592592#define USE_CUDA_GRAPH
593593#endif
594594
Original file line number Diff line number Diff line change @@ -92,8 +92,8 @@ if (GGML_CUDA_NO_PEER_COPY)
9292 add_compile_definitions (GGML_CUDA_NO_PEER_COPY)
9393endif ()
9494
95- if (GGML_HIP_GRAPH )
96- add_compile_definitions (GGML_HIP_GRAPH )
95+ if (GGML_HIP_GRAPHS )
96+ add_compile_definitions (GGML_HIP_GRAPHS )
9797endif ()
9898
9999if (GGML_CUDA_NO_VMM)
You can’t perform that action at this time.
0 commit comments