diff options
author | Georgi Gerganov <ggerganov@gmail.com> | 2024-02-18 19:17:00 +0200 |
---|---|---|
committer | Georgi Gerganov <ggerganov@gmail.com> | 2024-02-18 19:17:00 +0200 |
commit | f3f28c5395cd25b371617981b341616dbdd31e85 (patch) | |
tree | a61b5d7a7ee6f56dc65b567abd136af882180711 | |
parent | e75c6279d1c8e7abb82a331f5de7124eed402de2 (diff) |
cmake : fix GGML_USE_SYCL typo (#5555)
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 5ea4d4f1..0c29b5d0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -526,7 +526,7 @@ if (LLAMA_SYCL) message(STATUS "SYCL found") - add_compile_definitions(GML_USE_SYCL) + add_compile_definitions(GGML_USE_SYCL) if (LLAMA_SYCL_F16) add_compile_definitions(GGML_SYCL_F16) |