Skip to content

Commit

Permalink
ggml-backend-v2 wip
Browse files Browse the repository at this point in the history
  • Loading branch information
slaren committed Oct 18, 2023
1 parent c0e1eb4 commit 38f61d9
Show file tree
Hide file tree
Showing 16 changed files with 4,093 additions and 470 deletions.
14 changes: 13 additions & 1 deletion examples/gpt-2/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
#
# gpt-2

set(TEST_TARGET gpt-2)
set(TEST_TARGET gpt-2-ctx)
add_executable(${TEST_TARGET} main-ctx.cpp)
target_link_libraries(${TEST_TARGET} PRIVATE ggml common common-ggml)

set(TEST_TARGET gpt-2-alloc)
add_executable(${TEST_TARGET} main-alloc.cpp)
target_link_libraries(${TEST_TARGET} PRIVATE ggml common common-ggml)

set(TEST_TARGET gpt-2-backend)
add_executable(${TEST_TARGET} main-backend.cpp)
target_link_libraries(${TEST_TARGET} PRIVATE ggml common common-ggml)

set(TEST_TARGET gpt-2-backend2)
add_executable(${TEST_TARGET} main.cpp)
target_link_libraries(${TEST_TARGET} PRIVATE ggml common common-ggml)

Expand Down
Loading

0 comments on commit 38f61d9

Please sign in to comment.