CoolFace
Modelpublic

Felipe97/llama-cpp-compiled

sourceHugging Faceupdated 7d agoView on Hugging Face
0likes1.2kdownloads
CMakeLists.txt10 linesDownload Raw Back to sycl
1#  MIT license2#  Copyright (C) 2024 Intel Corporation3#  SPDX-License-Identifier: MIT4 5set(TARGET llama-ls-sycl-device)6add_executable(${TARGET} ls-sycl-device.cpp)7install(TARGETS ${TARGET} RUNTIME)8target_link_libraries(${TARGET} PRIVATE llama-common llama ${CMAKE_THREAD_LIBS_INIT})9target_compile_features(${TARGET} PRIVATE cxx_std_17)10