TdAI / llama.cpp /examples /sycl /CMakeLists.txt
tda45's picture
Upload folder using huggingface_hub (part 3)
1debbd5 verified
Raw
History Blame Contribute Delete
341 Bytes
# MIT license
# Copyright (C) 2024 Intel Corporation
# SPDX-License-Identifier: MIT
set(TARGET llama-ls-sycl-device)
add_executable(${TARGET} ls-sycl-device.cpp)
install(TARGETS ${TARGET} RUNTIME)
target_link_libraries(${TARGET} PRIVATE llama-common llama ${CMAKE_THREAD_LIBS_INIT})
target_compile_features(${TARGET} PRIVATE cxx_std_17)