2023-04-30 12:32:37 +00:00
|
|
|
set(TARGET benchmark)
|
|
|
|
|
add_executable(${TARGET} benchmark-matmult.cpp)
|
2023-07-19 15:01:11 +08:00
|
|
|
install(TARGETS ${TARGET} RUNTIME)
|
2023-11-02 02:50:16 -04:00
|
|
|
target_link_libraries(${TARGET} PRIVATE llama build_info ${CMAKE_THREAD_LIBS_INIT})
|
2023-09-15 16:59:49 -04:00
|
|
|
target_include_directories(${TARGET} PRIVATE ../../common)
|
2023-04-30 12:32:37 +00:00
|
|
|
target_compile_features(${TARGET} PRIVATE cxx_std_11)
|