File tree Expand file tree Collapse file tree 2 files changed +22
-5
lines changed Expand file tree Collapse file tree 2 files changed +22
-5
lines changed Original file line number Diff line number Diff line change 41
41
ubuntu-latest-cmake :
42
42
runs-on : ubuntu-latest
43
43
44
+ env :
45
+ GGML_NLOOP : 3
46
+ GGML_NITER : 1
47
+
44
48
steps :
45
49
- name : Clone
46
50
id : checkout
@@ -64,11 +68,15 @@ jobs:
64
68
id : cmake_test
65
69
run : |
66
70
cd build
67
- ctest --verbose
71
+ ctest --verbose --timeout 900
68
72
69
73
ubuntu-latest-cmake-sanitizer :
70
74
runs-on : ubuntu-latest
71
75
76
+ env :
77
+ GGML_NLOOP : 3
78
+ GGML_NITER : 1
79
+
72
80
continue-on-error : true
73
81
74
82
strategy :
99
107
id : cmake_test
100
108
run : |
101
109
cd build
102
- ctest --verbose
110
+ ctest --verbose --timeout 900
103
111
104
112
macOS-latest-make :
105
113
runs-on : macos-latest
@@ -123,6 +131,10 @@ jobs:
123
131
macOS-latest-cmake :
124
132
runs-on : macos-latest
125
133
134
+ env :
135
+ GGML_NLOOP : 3
136
+ GGML_NITER : 1
137
+
126
138
steps :
127
139
- name : Clone
128
140
id : checkout
@@ -147,10 +159,15 @@ jobs:
147
159
id : cmake_test
148
160
run : |
149
161
cd build
150
- ctest --verbose
162
+ ctest --verbose --timeout 900
151
163
152
164
windows-latest-cmake :
153
165
runs-on : windows-latest
166
+
167
+ env :
168
+ GGML_NLOOP : 3
169
+ GGML_NITER : 1
170
+
154
171
env :
155
172
OPENBLAS_VERSION : 0.3.23
156
173
OPENCL_VERSION : 2023.04.17
@@ -249,7 +266,7 @@ jobs:
249
266
if : ${{ matrix.build != 'clblast' && (matrix.build != 'avx512' || env.HAS_AVX512F == '1') }} # Test AVX-512 only when possible
250
267
run : |
251
268
cd build
252
- ctest -C Release --verbose
269
+ ctest -C Release --verbose --timeout 900
253
270
254
271
- name : Get commit hash
255
272
id : commit
Original file line number Diff line number Diff line change @@ -10,5 +10,5 @@ llama_add_test(test-quantize-fns.cpp)
10
10
llama_add_test (test -quantize-perf.cpp )
11
11
llama_add_test (test -sampling.cpp )
12
12
llama_add_test (test -tokenizer-0.cpp ${CMAKE_CURRENT_SOURCE_DIR} /../models/ggml-vocab.bin )
13
- # llama_add_test(test-grad0.c) # SLOW
13
+ llama_add_test (test -grad0.c ) # SLOW
14
14
# llama_add_test(test-opt.c) # SLOW
You can’t perform that action at this time.
0 commit comments