We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7370e6e commit a30683fCopy full SHA for a30683f
3 files changed
examples/CMakeLists.txt
@@ -18,6 +18,7 @@ else()
18
add_subdirectory(debug)
19
add_subdirectory(embedding)
20
add_subdirectory(eval-callback)
21
+ add_subdirectory(fair-htp-cuda-bench)
22
23
add_subdirectory(gguf-hash)
24
add_subdirectory(gguf)
examples/fair-htp-cuda-bench/CMakeLists.txt
@@ -0,0 +1,5 @@
1
+set(TARGET llama-fair-htp-cuda-bench)
2
+add_executable(${TARGET} fair-htp-cuda-bench.cpp)
3
+install(TARGETS ${TARGET} RUNTIME)
4
+target_link_libraries(${TARGET} PRIVATE ggml ${CMAKE_THREAD_LIBS_INIT})
5
+target_compile_features(${TARGET} PRIVATE cxx_std_17)
0 commit comments