| commit | 2e8e7f00869f61ec9f03f9258f18410c291d100c | [log] [tgz] |
|---|---|---|
| author | Sadaf Ebrahimi <[email protected]> | Fri Jan 17 08:18:48 2025 -0800 |
| committer | Automerger Merge Worker <[email protected]> | Fri Jan 17 08:18:48 2025 -0800 |
| tree | 96256ad0d8941f945a947bf948e63c7d526efcc5 | |
| parent | 1cee13ffa187fdeaac518dfde6a6a65611600356 [diff] | |
| parent | e04a6a26c170e8751871fb301d7f682ee19656aa [diff] |
Upgrade pthreadpool to 560c60d342a76076f0557a3946924c6478470044 am: e04a6a26c1 Original change: https://android-review.googlesource.com/c/platform/external/pthreadpool/+/3455685 Change-Id: I304ef79e4f51126b95fe2c88b660afd506bc9946 Signed-off-by: Automerger Merge Worker <[email protected]>
pthreadpool is a portable and efficient thread pool implementation. It provides similar functionality to #pragma omp parallel for, but with additional features.
The following example demonstates using the thread pool for parallel addition of two arrays:
static void add_arrays(struct array_addition_context* context, size_t i) { context->sum[i] = context->augend[i] + context->addend[i]; } #define ARRAY_SIZE 4 int main() { double augend[ARRAY_SIZE] = { 1.0, 2.0, 4.0, -5.0 }; double addend[ARRAY_SIZE] = { 0.25, -1.75, 0.0, 0.5 }; double sum[ARRAY_SIZE]; pthreadpool_t threadpool = pthreadpool_create(0); assert(threadpool != NULL); const size_t threads_count = pthreadpool_get_threads_count(threadpool); printf("Created thread pool with %zu threads\n", threads_count); struct array_addition_context context = { augend, addend, sum }; pthreadpool_parallelize_1d(threadpool, (pthreadpool_task_1d_t) add_arrays, (void*) &context, ARRAY_SIZE, PTHREADPOOL_FLAG_DISABLE_DENORMALS /* flags */); pthreadpool_destroy(threadpool); threadpool = NULL; printf("%8s\t%.2lf\t%.2lf\t%.2lf\t%.2lf\n", "Augend", augend[0], augend[1], augend[2], augend[3]); printf("%8s\t%.2lf\t%.2lf\t%.2lf\t%.2lf\n", "Addend", addend[0], addend[1], addend[2], addend[3]); printf("%8s\t%.2lf\t%.2lf\t%.2lf\t%.2lf\n", "Sum", sum[0], sum[1], sum[2], sum[3]); return 0; }