threadpool: remove abort_callback from threadpool state
This commit is contained in:
parent
307fece5d7
commit
63a0dad83c
1 changed files with 1 additions and 7 deletions
|
@ -1979,9 +1979,6 @@ struct ggml_compute_threadpool {
|
||||||
int32_t prio; // Scheduling priority
|
int32_t prio; // Scheduling priority
|
||||||
uint32_t poll; // Polling level (0 - no polling)
|
uint32_t poll; // Polling level (0 - no polling)
|
||||||
|
|
||||||
ggml_abort_callback abort_callback; // abort ggml_graph_compute when true
|
|
||||||
void * abort_callback_data;
|
|
||||||
|
|
||||||
enum ggml_status ec;
|
enum ggml_status ec;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -19286,10 +19283,7 @@ static struct ggml_compute_threadpool * ggml_create_threadpool_impl(
|
||||||
threadpool->n_threads_cur = tpp->n_threads;
|
threadpool->n_threads_cur = tpp->n_threads;
|
||||||
threadpool->poll = tpp->poll;
|
threadpool->poll = tpp->poll;
|
||||||
threadpool->prio = tpp->prio;
|
threadpool->prio = tpp->prio;
|
||||||
|
threadpool->ec = GGML_STATUS_SUCCESS;
|
||||||
threadpool->abort_callback = NULL;
|
|
||||||
threadpool->abort_callback_data = NULL;
|
|
||||||
threadpool->ec = GGML_STATUS_SUCCESS;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef GGML_USE_OPENMP
|
#ifndef GGML_USE_OPENMP
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue