Merge e516cd0056 into 3bc8d2cf23
This commit is contained in:
commit
6cfe97a4b7
|
|
@ -590,10 +590,7 @@ class tinyBLAS {
|
|||
ggml_threadpool_chunk_set(params->threadpool, params->nth);
|
||||
}
|
||||
|
||||
ggml_barrier(params->threadpool);
|
||||
|
||||
int64_t job = params->ith;
|
||||
while (job < nb_job) {
|
||||
for (int64_t job = params->ith; job < nb_job; job += params->nth) {
|
||||
const int64_t ii = (job % ytiles) * RM * BM;
|
||||
const int64_t jb = job / ytiles;
|
||||
const int64_t jr0 = BLOC_POS(jb , jj_BN, SIZE_BN);
|
||||
|
|
@ -616,7 +613,6 @@ class tinyBLAS {
|
|||
GGML_ASSERT(jj == jj2);
|
||||
}
|
||||
|
||||
job = ggml_threadpool_chunk_add(params->threadpool, 1);
|
||||
}
|
||||
|
||||
ggml_barrier(params->threadpool);
|
||||
|
|
|
|||
Loading…
Reference in New Issue