diff options
author | Clint Herron <hanclinto@gmail.com> | 2024-04-11 17:44:48 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-11 17:44:48 -0400 |
commit | f7001ccc5aa359fcf41bba19d1c99c3d25c9bcc7 (patch) | |
tree | dad93f79be2a97cbb44831ba33eea3b75b0be87f | |
parent | a474f50ebb3e10be3371562f75f3f573f1a86b5f (diff) |
As suggested by @slaren, disabling Metal for test to fix CI build on OSX from #6576 (#6619)
-rw-r--r-- | examples/eval-callback/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/eval-callback/CMakeLists.txt b/examples/eval-callback/CMakeLists.txt index d53f3742..c56ba780 100644 --- a/examples/eval-callback/CMakeLists.txt +++ b/examples/eval-callback/CMakeLists.txt @@ -5,5 +5,5 @@ target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT}) target_compile_features(${TARGET} PRIVATE cxx_std_11) set(TEST_TARGET test-eval-callback) -add_test(NAME ${TEST_TARGET} COMMAND eval-callback --hf-repo ggml-org/models --hf-file tinyllamas/stories260K.gguf --model stories260K.gguf --prompt hello --seed 42) +add_test(NAME ${TEST_TARGET} COMMAND eval-callback --hf-repo ggml-org/models --hf-file tinyllamas/stories260K.gguf --model stories260K.gguf --prompt hello --seed 42 -ngl 0) set_property(TEST ${TEST_TARGET} PROPERTY LABELS eval-callback curl) |