Skip to content

Commit 2c5874e

Browse files
committed
test
ggml-ci
1 parent bf45300 commit 2c5874e

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -777,6 +777,7 @@ jobs:
777777
cmake -S . -B build ${{ matrix.defines }} `
778778
-DCURL_LIBRARY="$env:CURL_PATH/lib/libcurl.dll.a" -DCURL_INCLUDE_DIR="$env:CURL_PATH/include"
779779
cmake --build build --config Release -j ${env:NUMBER_OF_PROCESSORS}
780+
cp $env:CURL_PATH/bin/libcurl-*.dll build/bin/Release
780781
781782
- name: Add libopenblas.dll
782783
id: add_libopenblas_dll

tests/test-thread-safety.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ int main(int argc, char ** argv) {
2424
llama_backend_init();
2525
llama_numa_init(params.numa);
2626

27-
llama_log_set([](ggml_log_level level, const char * text, void * /*user_data*/) {
28-
if (level == GGML_LOG_LEVEL_ERROR) {
29-
common_log_add(common_log_main(), level, "%s", text);
30-
}
31-
}, NULL);
27+
//llama_log_set([](ggml_log_level level, const char * text, void * /*user_data*/) {
28+
// if (level == GGML_LOG_LEVEL_ERROR) {
29+
// common_log_add(common_log_main(), level, "%s", text);
30+
// }
31+
//}, NULL);
3232

3333
auto mparams = common_model_params_to_llama(params);
3434
auto cparams = common_context_params_to_llama(params);

0 commit comments

Comments
 (0)