blob: f7d4dfbcd0a90ad71c7a12661b8c0f0a87dc5613 [file] [log] [blame]
/* Standard C headers */
#include <stdint.h>
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
/* POSIX headers */
#include <pthread.h>
#include <unistd.h>
/* Platform-specific headers */
#if defined(__linux__)
#define PTHREADPOOL_USE_FUTEX 1
#include <sys/syscall.h>
#include <linux/futex.h>
/* Old Android NDKs do not define SYS_futex and FUTEX_PRIVATE_FLAG */
#ifndef SYS_futex
#define SYS_futex __NR_futex
#endif
#ifndef FUTEX_PRIVATE_FLAG
#define FUTEX_PRIVATE_FLAG 128
#endif
#elif defined(__native_client__)
#define PTHREADPOOL_USE_FUTEX 1
#include <irt.h>
#else
#define PTHREADPOOL_USE_FUTEX 0
#endif
/* Dependencies */
#include <fxdiv.h>
/* Library header */
#include <pthreadpool.h>
#define PTHREADPOOL_CACHELINE_SIZE 64
#define PTHREADPOOL_CACHELINE_ALIGNED __attribute__((__aligned__(PTHREADPOOL_CACHELINE_SIZE)))
#if defined(__clang__)
#if __has_extension(c_static_assert) || __has_feature(c_static_assert)
#define PTHREADPOOL_STATIC_ASSERT(predicate, message) _Static_assert((predicate), message)
#else
#define PTHREADPOOL_STATIC_ASSERT(predicate, message)
#endif
#elif defined(__GNUC__) && ((__GNUC__ > 4) || (__GNUC__ == 4) && (__GNUC_MINOR__ >= 6))
/* Static assert is supported by gcc >= 4.6 */
#define PTHREADPOOL_STATIC_ASSERT(predicate, message) _Static_assert((predicate), message)
#else
#define PTHREADPOOL_STATIC_ASSERT(predicate, message)
#endif
static inline size_t multiply_divide(size_t a, size_t b, size_t d) {
#if defined(__SIZEOF_SIZE_T__) && (__SIZEOF_SIZE_T__ == 4)
return (size_t) (((uint64_t) a) * ((uint64_t) b)) / ((uint64_t) d);
#elif defined(__SIZEOF_SIZE_T__) && (__SIZEOF_SIZE_T__ == 8)
return (size_t) (((__uint128_t) a) * ((__uint128_t) b)) / ((__uint128_t) d);
#else
#error "Unsupported platform"
#endif
}
static inline size_t divide_round_up(size_t dividend, size_t divisor) {
if (dividend % divisor == 0) {
return dividend / divisor;
} else {
return dividend / divisor + 1;
}
}
static inline size_t min(size_t a, size_t b) {
return a < b ? a : b;
}
#if PTHREADPOOL_USE_FUTEX
#if defined(__linux__)
static int futex_wait(volatile uint32_t* address, uint32_t value) {
return syscall(SYS_futex, address, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, value,
NULL, NULL, 0);
}
static int futex_wake_all(volatile uint32_t* address) {
return syscall(SYS_futex, address, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, INT_MAX,
NULL, NULL, 0);
}
#elif defined(__native_client__)
static struct nacl_irt_futex nacl_irt_futex = { 0 };
static pthread_once_t nacl_init_guard = PTHREAD_ONCE_INIT;
static void nacl_init(void) {
nacl_interface_query(NACL_IRT_FUTEX_v0_1, &nacl_irt_futex, sizeof(nacl_irt_futex));
}
static int futex_wait(volatile uint32_t* address, uint32_t value) {
return nacl_irt_futex.futex_wait_abs((volatile int*) address, (int) value, NULL);
}
static int futex_wake_all(volatile uint32_t* address) {
int count;
return nacl_irt_futex.futex_wake((volatile int*) address, INT_MAX, &count);
}
#else
#error "Platform-specific implementation of futex_wait and futex_wake_all required"
#endif
#endif
#define THREADPOOL_COMMAND_MASK UINT32_C(0x7FFFFFFF)
enum threadpool_command {
threadpool_command_init,
threadpool_command_compute_1d,
threadpool_command_shutdown,
};
struct PTHREADPOOL_CACHELINE_ALIGNED thread_info {
/**
* Index of the first element in the work range.
* Before processing a new element the owning worker thread increments this value.
*/
volatile size_t range_start;
/**
* Index of the element after the last element of the work range.
* Before processing a new element the stealing worker thread decrements this value.
*/
volatile size_t range_end;
/**
* The number of elements in the work range.
* Due to race conditions range_length <= range_end - range_start.
* The owning worker thread must decrement this value before incrementing @a range_start.
* The stealing worker thread must decrement this value before decrementing @a range_end.
*/
volatile size_t range_length;
/**
* Thread number in the 0..threads_count-1 range.
*/
size_t thread_number;
/**
* The pthread object corresponding to the thread.
*/
pthread_t thread_object;
/**
* Condition variable used to wake up the thread.
* When the thread is idle, it waits on this condition variable.
*/
pthread_cond_t wakeup_condvar;
};
PTHREADPOOL_STATIC_ASSERT(sizeof(struct thread_info) % PTHREADPOOL_CACHELINE_SIZE == 0, "thread_info structure must occupy an integer number of cache lines (64 bytes)");
struct PTHREADPOOL_CACHELINE_ALIGNED pthreadpool {
/**
* The number of threads that are processing an operation.
*/
volatile size_t active_threads;
#if PTHREADPOOL_USE_FUTEX
/**
* Indicates if there are active threads.
* Only two values are possible:
* - has_active_threads == 0 if active_threads == 0
* - has_active_threads == 1 if active_threads != 0
*/
volatile uint32_t has_active_threads;
#endif
/**
* The last command submitted to the thread pool.
*/
volatile uint32_t command;
/**
* The function to call for each item.
*/
volatile void* function;
/**
* The first argument to the item processing function.
*/
void *volatile argument;
/**
* Serializes concurrent calls to @a pthreadpool_compute_* from different threads.
*/
pthread_mutex_t execution_mutex;
#if !PTHREADPOOL_USE_FUTEX
/**
* Guards access to the @a active_threads variable.
*/
pthread_mutex_t completion_mutex;
/**
* Condition variable to wait until all threads complete an operation (until @a active_threads is zero).
*/
pthread_cond_t completion_condvar;
/**
* Guards access to the @a command variable.
*/
pthread_mutex_t command_mutex;
/**
* Condition variable to wait for change of the @a command variable.
*/
pthread_cond_t command_condvar;
#endif
/**
* The number of threads in the thread pool. Never changes after initialization.
*/
size_t threads_count;
/**
* Thread information structures that immediately follow this structure.
*/
struct thread_info threads[];
};
PTHREADPOOL_STATIC_ASSERT(sizeof(struct pthreadpool) % PTHREADPOOL_CACHELINE_SIZE == 0, "pthreadpool structure must occupy an integer number of cache lines (64 bytes)");
static void checkin_worker_thread(struct pthreadpool* threadpool) {
#if PTHREADPOOL_USE_FUTEX
if (__sync_sub_and_fetch(&threadpool->active_threads, 1) == 0) {
threadpool->has_active_threads = 0;
__sync_synchronize();
futex_wake_all(&threadpool->has_active_threads);
}
#else
pthread_mutex_lock(&threadpool->completion_mutex);
if (--threadpool->active_threads == 0) {
pthread_cond_signal(&threadpool->completion_condvar);
}
pthread_mutex_unlock(&threadpool->completion_mutex);
#endif
}
static void wait_worker_threads(struct pthreadpool* threadpool) {
#if PTHREADPOOL_USE_FUTEX
uint32_t has_active_threads;
while ((has_active_threads = threadpool->has_active_threads) != 0) {
futex_wait(&threadpool->has_active_threads, 1);
}
#else
if (threadpool->active_threads != 0) {
pthread_mutex_lock(&threadpool->completion_mutex);
while (threadpool->active_threads != 0) {
pthread_cond_wait(&threadpool->completion_condvar, &threadpool->completion_mutex);
};
pthread_mutex_unlock(&threadpool->completion_mutex);
}
#endif
}
inline static bool atomic_decrement(volatile size_t* value) {
size_t actual_value = *value;
if (actual_value != 0) {
size_t expected_value;
do {
expected_value = actual_value;
const size_t new_value = actual_value - 1;
actual_value = __sync_val_compare_and_swap(value, expected_value, new_value);
} while ((actual_value != expected_value) && (actual_value != 0));
}
return actual_value != 0;
}
static void thread_compute_1d(struct pthreadpool* threadpool, struct thread_info* thread) {
const pthreadpool_function_1d_t function = (pthreadpool_function_1d_t) threadpool->function;
void *const argument = threadpool->argument;
/* Process thread's own range of items */
size_t range_start = thread->range_start;
while (atomic_decrement(&thread->range_length)) {
function(argument, range_start++);
}
/* Done, now look for other threads' items to steal */
if (threadpool->active_threads > 1) {
/* There are still other threads with work */
const size_t thread_number = thread->thread_number;
const size_t threads_count = threadpool->threads_count;
for (size_t tid = (thread_number + 1) % threads_count; tid != thread_number; tid = (tid + 1) % threads_count) {
struct thread_info* other_thread = &threadpool->threads[tid];
while (atomic_decrement(&other_thread->range_length)) {
const size_t item_id = __sync_sub_and_fetch(&other_thread->range_end, 1);
function(argument, item_id);
}
}
}
}
static void* thread_main(void* arg) {
struct thread_info* thread = (struct thread_info*) arg;
struct pthreadpool* threadpool = ((struct pthreadpool*) (thread - thread->thread_number)) - 1;
uint32_t last_command = threadpool_command_init;
/* Check in */
checkin_worker_thread(threadpool);
/* Monitor news commands and act accordingly */
for (;;) {
uint32_t command;
#if PTHREADPOOL_USE_FUTEX
while ((command = threadpool->command) == last_command) {
futex_wait(&threadpool->command, last_command);
}
#else
/* Lock the command mutex */
pthread_mutex_lock(&threadpool->command_mutex);
/* Read the command */
while ((command = threadpool->command) == last_command) {
/* Wait for new command */
pthread_cond_wait(&threadpool->command_condvar, &threadpool->command_mutex);
}
/* Read a new command */
pthread_mutex_unlock(&threadpool->command_mutex);
#endif
/* Process command */
switch (command & THREADPOOL_COMMAND_MASK) {
case threadpool_command_compute_1d:
thread_compute_1d(threadpool, thread);
break;
case threadpool_command_shutdown:
/* Exit immediately: the master thread is waiting on pthread_join */
return NULL;
case threadpool_command_init:
/* To inhibit compiler warning */
break;
}
/* Notify the master thread that we finished processing */
checkin_worker_thread(threadpool);
/* Update last command */
last_command = command;
};
}
struct pthreadpool* pthreadpool_create(size_t threads_count) {
#if defined(__native_client__)
pthread_once(&nacl_init_guard, nacl_init);
#endif
if (threads_count == 0) {
threads_count = (size_t) sysconf(_SC_NPROCESSORS_ONLN);
}
#if !defined(__ANDROID__)
struct pthreadpool* threadpool = NULL;
if (posix_memalign((void**) &threadpool, 64, sizeof(struct pthreadpool) + threads_count * sizeof(struct thread_info)) != 0) {
#else
/*
* Android didn't get posix_memalign until API level 17 (Android 4.2).
* Use (otherwise obsolete) memalign function on Android platform.
*/
struct pthreadpool* threadpool = memalign(64, sizeof(struct pthreadpool) + threads_count * sizeof(struct thread_info));
if (threadpool == NULL) {
#endif
return NULL;
}
memset(threadpool, 0, sizeof(struct pthreadpool) + threads_count * sizeof(struct thread_info));
threadpool->threads_count = threads_count;
pthread_mutex_init(&threadpool->execution_mutex, NULL);
#if !PTHREADPOOL_USE_FUTEX
pthread_mutex_init(&threadpool->completion_mutex, NULL);
pthread_cond_init(&threadpool->completion_condvar, NULL);
pthread_mutex_init(&threadpool->command_mutex, NULL);
pthread_cond_init(&threadpool->command_condvar, NULL);
#endif
#if PTHREADPOOL_USE_FUTEX
threadpool->has_active_threads = 1;
#endif
threadpool->active_threads = threadpool->threads_count;
for (size_t tid = 0; tid < threads_count; tid++) {
threadpool->threads[tid].thread_number = tid;
pthread_create(&threadpool->threads[tid].thread_object, NULL, &thread_main, &threadpool->threads[tid]);
}
/* Wait until all threads initialize */
wait_worker_threads(threadpool);
return threadpool;
}
size_t pthreadpool_get_threads_count(struct pthreadpool* threadpool) {
return threadpool->threads_count;
}
void pthreadpool_compute_1d(
struct pthreadpool* threadpool,
pthreadpool_function_1d_t function,
void* argument,
size_t range)
{
if (threadpool == NULL) {
/* No thread pool provided: execute function sequentially on the calling thread */
for (size_t i = 0; i < range; i++) {
function(argument, i);
}
} else {
/* Protect the global threadpool structures */
pthread_mutex_lock(&threadpool->execution_mutex);
#if PTHREADPOOL_USE_FUTEX
/* Setup global arguments */
threadpool->function = function;
threadpool->argument = argument;
threadpool->active_threads = threadpool->threads_count;
threadpool->has_active_threads = 1;
/* Spread the work between threads */
for (size_t tid = 0; tid < threadpool->threads_count; tid++) {
struct thread_info* thread = &threadpool->threads[tid];
thread->range_start = multiply_divide(range, tid, threadpool->threads_count);
thread->range_end = multiply_divide(range, tid + 1, threadpool->threads_count);
thread->range_length = thread->range_end - thread->range_start;
}
__sync_synchronize();
/*
* Update the threadpool command.
* Imporantly, do it after initializing command parameters (range, function, argument)
* ~(threadpool->command | THREADPOOL_COMMAND_MASK) flips the bits not in command mask
* to ensure the unmasked command is different then the last command, because worker threads
* monitor for change in the unmasked command.
*/
threadpool->command = ~(threadpool->command | THREADPOOL_COMMAND_MASK) | threadpool_command_compute_1d;
__sync_synchronize();
futex_wake_all(&threadpool->command);
#else
/* Lock the command variables to ensure that threads don't start processing before they observe complete command with all arguments */
pthread_mutex_lock(&threadpool->command_mutex);
/* Setup global arguments */
threadpool->function = function;
threadpool->argument = argument;
/* Locking of completion_mutex not needed: readers are sleeping on command_condvar */
threadpool->active_threads = threadpool->threads_count;
/* Spread the work between threads */
for (size_t tid = 0; tid < threadpool->threads_count; tid++) {
struct thread_info* thread = &threadpool->threads[tid];
thread->range_start = multiply_divide(range, tid, threadpool->threads_count);
thread->range_end = multiply_divide(range, tid + 1, threadpool->threads_count);
thread->range_length = thread->range_end - thread->range_start;
}
/*
* Update the threadpool command.
* Imporantly, do it after initializing command parameters (range, function, argument)
* ~(threadpool->command | THREADPOOL_COMMAND_MASK) flips the bits not in command mask
* to ensure the unmasked command is different then the last command, because worker threads
* monitor for change in the unmasked command.
*/
threadpool->command = ~(threadpool->command | THREADPOOL_COMMAND_MASK) | threadpool_command_compute_1d;
/* Unlock the command variables before waking up the threads for better performance */
pthread_mutex_unlock(&threadpool->command_mutex);
/* Wake up the threads */
pthread_cond_broadcast(&threadpool->command_condvar);
#endif
/* Wait until the threads finish computation */
wait_worker_threads(threadpool);
/* Unprotect the global threadpool structures */
pthread_mutex_unlock(&threadpool->execution_mutex);
}
}
struct compute_1d_tiled_context {
pthreadpool_function_1d_tiled_t function;
void* argument;
size_t range;
size_t tile;
};
static void compute_1d_tiled(const struct compute_1d_tiled_context* context, size_t linear_index) {
const size_t tile_index = linear_index;
const size_t index = tile_index * context->tile;
const size_t tile = min(context->tile, context->range - index);
context->function(context->argument, index, tile);
}
void pthreadpool_compute_1d_tiled(
pthreadpool_t threadpool,
pthreadpool_function_1d_tiled_t function,
void* argument,
size_t range,
size_t tile)
{
if (threadpool == NULL) {
/* No thread pool provided: execute function sequentially on the calling thread */
for (size_t i = 0; i < range; i += tile) {
function(argument, i, min(range - i, tile));
}
} else {
/* Execute in parallel on the thread pool using linearized index */
const size_t tile_range = divide_round_up(range, tile);
struct compute_1d_tiled_context context = {
.function = function,
.argument = argument,
.range = range,
.tile = tile
};
pthreadpool_compute_1d(threadpool, (pthreadpool_function_1d_t) compute_1d_tiled, &context, tile_range);
}
}
struct compute_2d_context {
pthreadpool_function_2d_t function;
void* argument;
struct fxdiv_divisor_size_t range_j;
};
static void compute_2d(const struct compute_2d_context* context, size_t linear_index) {
const struct fxdiv_divisor_size_t range_j = context->range_j;
const struct fxdiv_result_size_t index = fxdiv_divide_size_t(linear_index, range_j);
context->function(context->argument, index.quotient, index.remainder);
}
void pthreadpool_compute_2d(
struct pthreadpool* threadpool,
pthreadpool_function_2d_t function,
void* argument,
size_t range_i,
size_t range_j)
{
if (threadpool == NULL) {
/* No thread pool provided: execute function sequentially on the calling thread */
for (size_t i = 0; i < range_i; i++) {
for (size_t j = 0; j < range_j; j++) {
function(argument, i, j);
}
}
} else {
/* Execute in parallel on the thread pool using linearized index */
struct compute_2d_context context = {
.function = function,
.argument = argument,
.range_j = fxdiv_init_size_t(range_j)
};
pthreadpool_compute_1d(threadpool, (pthreadpool_function_1d_t) compute_2d, &context, range_i * range_j);
}
}
struct compute_2d_tiled_context {
pthreadpool_function_2d_tiled_t function;
void* argument;
struct fxdiv_divisor_size_t tile_range_j;
size_t range_i;
size_t range_j;
size_t tile_i;
size_t tile_j;
};
static void compute_2d_tiled(const struct compute_2d_tiled_context* context, size_t linear_index) {
const struct fxdiv_divisor_size_t tile_range_j = context->tile_range_j;
const struct fxdiv_result_size_t tile_index = fxdiv_divide_size_t(linear_index, tile_range_j);
const size_t max_tile_i = context->tile_i;
const size_t max_tile_j = context->tile_j;
const size_t index_i = tile_index.quotient * max_tile_i;
const size_t index_j = tile_index.remainder * max_tile_j;
const size_t tile_i = min(max_tile_i, context->range_i - index_i);
const size_t tile_j = min(max_tile_j, context->range_j - index_j);
context->function(context->argument, index_i, index_j, tile_i, tile_j);
}
void pthreadpool_compute_2d_tiled(
pthreadpool_t threadpool,
pthreadpool_function_2d_tiled_t function,
void* argument,
size_t range_i,
size_t range_j,
size_t tile_i,
size_t tile_j)
{
if (threadpool == NULL) {
/* No thread pool provided: execute function sequentially on the calling thread */
for (size_t i = 0; i < range_i; i += tile_i) {
for (size_t j = 0; j < range_j; j += tile_j) {
function(argument, i, j, min(range_i - i, tile_i), min(range_j - j, tile_j));
}
}
} else {
/* Execute in parallel on the thread pool using linearized index */
const size_t tile_range_i = divide_round_up(range_i, tile_i);
const size_t tile_range_j = divide_round_up(range_j, tile_j);
struct compute_2d_tiled_context context = {
.function = function,
.argument = argument,
.tile_range_j = fxdiv_init_size_t(tile_range_j),
.range_i = range_i,
.range_j = range_j,
.tile_i = tile_i,
.tile_j = tile_j
};
pthreadpool_compute_1d(threadpool, (pthreadpool_function_1d_t) compute_2d_tiled, &context, tile_range_i * tile_range_j);
}
}
void pthreadpool_destroy(struct pthreadpool* threadpool) {
if (threadpool != NULL) {
#if PTHREADPOOL_USE_FUTEX
threadpool->active_threads = threadpool->threads_count;
threadpool->has_active_threads = 1;
__sync_synchronize();
threadpool->command = threadpool_command_shutdown;
__sync_synchronize();
futex_wake_all(&threadpool->command);
#else
/* Lock the command variable to ensure that threads don't shutdown until both command and active_threads are updated */
pthread_mutex_lock(&threadpool->command_mutex);
/* Locking of completion_mutex not needed: readers are sleeping on command_condvar */
threadpool->active_threads = threadpool->threads_count;
/* Update the threadpool command. */
threadpool->command = threadpool_command_shutdown;
/* Wake up worker threads */
pthread_cond_broadcast(&threadpool->command_condvar);
/* Commit the state changes and let workers start processing */
pthread_mutex_unlock(&threadpool->command_mutex);
#endif
/* Wait until all threads return */
for (size_t thread = 0; thread < threadpool->threads_count; thread++) {
pthread_join(threadpool->threads[thread].thread_object, NULL);
}
/* Release resources */
pthread_mutex_destroy(&threadpool->execution_mutex);
#if !PTHREADPOOL_USE_FUTEX
pthread_mutex_destroy(&threadpool->completion_mutex);
pthread_cond_destroy(&threadpool->completion_condvar);
pthread_mutex_destroy(&threadpool->command_mutex);
pthread_cond_destroy(&threadpool->command_condvar);
#endif
free(threadpool);
}
}