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
153
153
option (GGML_CUDA_GRAPHS "ggml: use CUDA graphs (llama.cpp only)" ${GGML_CUDA_GRAPHS_DEFAULT} )
154
154
155
155
option (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 )
157
157
option (GGML_HIP_UMA "ggml: use HIP unified memory architecture" OFF )
158
158
option (GGML_VULKAN "ggml: use Vulkan" OFF )
159
159
option (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 {
588
588
};
589
589
590
590
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 )
592
592
#define USE_CUDA_GRAPH
593
593
#endif
594
594
Original file line number Diff line number Diff line change @@ -92,8 +92,8 @@ if (GGML_CUDA_NO_PEER_COPY)
92
92
add_compile_definitions (GGML_CUDA_NO_PEER_COPY )
93
93
endif ()
94
94
95
- if (GGML_HIP_GRAPH )
96
- add_compile_definitions (GGML_HIP_GRAPH )
95
+ if (GGML_HIP_GRAPHS )
96
+ add_compile_definitions (GGML_HIP_GRAPHS )
97
97
endif ()
98
98
99
99
if (GGML_CUDA_NO_VMM )
You can’t perform that action at this time.
0 commit comments