We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92ecdcc commit ab8f044Copy full SHA for ab8f044
ggml/src/ggml-sycl/CMakeLists.txt
@@ -51,6 +51,9 @@ target_compile_options(ggml-sycl PRIVATE "-Wno-narrowing")
51
# Link against oneDNN
52
set(GGML_SYCL_DNNL 0)
53
if(GGML_SYCL_DNN)
54
+ if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
55
+ find_package(OpenCL REQUIRED)
56
+ endif()
57
find_package(DNNL)
58
if(DNNL_FOUND)
59
if (NOT DEFINED DNNL_GPU_VENDOR)
0 commit comments