1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

added unit test for MPMC queue

This commit is contained in:
Steffen Vogel 2016-10-19 01:25:52 -04:00
parent cf59a485ab
commit bb50cc843e
3 changed files with 309 additions and 16 deletions

View file

@ -3,7 +3,7 @@ TEST_OBJS = $(patsubst %.c,$(BUILDDIR)/%.o,$(TEST_SRCS))
TEST_CFLAGS = $(CFLAGS)
TEST_LDFLAGS = $(LDFLAGS) -Wl,-rpath,'$$ORIGIN'
TEST_LDLIBS = $(LDLIBS) -lcriterion -lvillas
TEST_LDLIBS = $(LDLIBS) -lcriterion -lvillas -pthread
tests: $(BUILDDIR)/testsuite

View file

@ -1,25 +1,318 @@
/** Unit tests for MPMC queue
*
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
* @copyright 2014-2016, Institute for Automation of Complex Power Systems, EONERC
* This file is part of VILLASnode. All Rights Reserved. Proprietary and confidential.
* Unauthorized copying of this file, via any medium is strictly prohibited.
*********************************************************************************/
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdint.h>
#include <time.h>
#include <pthread.h>
#include <criterion/criterion.h>
#include <criterion/logging.h>
#include <criterion/parameterized.h>
#include "utils.h"
#include "queue.h"
#include "memory.h"
Test(queue, singleThreaded)
#define SIZE (1 << 10)
static struct queue q;
struct param {
int volatile start;
int thread_count;
int queue_size;
int iter_count;
int batch_size;
void * (*thread_func)(void *);
struct queue queue;
const struct memtype *memtype;
};
/** Get thread id as integer
* In contrast to pthread_t which is an opaque type */
#ifdef __linux__
#include <sys/syscall.h>
#endif
uint64_t thread_get_id()
{
/* struct queue q;
#ifdef __MACH__
uint64_t id;
pthread_threadid_np(pthread_self(), &id);
return id;
#elif defined(SYS_gettid)
return (int) syscall(SYS_gettid);
#endif
return -1;
}
/** Sleep, do nothing */
__attribute__((always_inline)) static inline void nop()
{
__asm__("rep nop;");
}
static void * producer(void *ctx)
{
int ret;
struct param *p = (struct param *) ctx;
queue_init(&q, 100, &memtype_heap);
srand((unsigned) time(0) + thread_get_id());
size_t nops = rand() % 1000;
srand(1337);
/** @todo Criterion cr_log() is broken for multi-threaded programs */
//cr_log_info("producer: tid = %lu", thread_get_id());
/* Wait for global start signal */
while (p->start == 0)
pthread_yield();
for (int i = 0; i < 100; i++)
queue_push(&q, &)
//cr_log_info("producer: wait for %zd nops", nops);
queue_destroy(&q);*/
/* Wait for a random time */
for (size_t i = 0; i != nops; i += 1)
nop();
//cr_log_info("producer: start pushing");
/* Enqueue */
for (unsigned long count = 0; count < p->iter_count; count++) {
do {
ret = queue_push(&p->queue, (void *) count);
pthread_yield();
} while (ret != 1);
}
//cr_log_info("producer: finished");
return NULL;
}
static void * consumer(void *ctx)
{
int ret;
struct param *p = (struct param *) ctx;
srand((unsigned) time(0) + thread_get_id());
size_t nops = rand() % 1000;
//cr_log_info("consumer: tid = %lu", thread_get_id());
/* Wait for global start signal */
while (p->start == 0)
pthread_yield();
//cr_log_info("consumer: wait for %zd nops", nops);
/* Wait for a random time */
for (size_t i = 0; i != nops; i += 1)
nop();
//cr_log_info("consumer: start pulling");
/* Dequeue */
for (unsigned long count = 0; count < p->iter_count; count++) {
void *ptr;
do {
ret = queue_pull(&p->queue, &ptr);
} while (ret != 1);
//cr_log_info("consumer: %lu\n", count);
//cr_assert_eq((intptr_t) ptr, count);
}
//cr_log_info("consumer: finished");
return NULL;
}
void * producer_consumer(void *ctx)
{
struct param *p = (struct param *) ctx;
srand((unsigned) time(0) + thread_get_id());
size_t nops = rand() % 1000;
/* Wait for global start signal */
while (p->start == 0)
pthread_yield();
/* Wait for a random time */
for (size_t i = 0; i != nops; i += 1)
nop();
for (int iter = 0; iter < p->iter_count; ++iter) {
for (size_t i = 0; i < p->batch_size; i++) {
void *ptr = (void *) (iter * p->batch_size + i);
while (!queue_push(&p->queue, ptr))
pthread_yield(); /* queue full, let other threads proceed */
}
for (size_t i = 0; i < p->batch_size; i++) {
void *ptr;
while (!queue_pull(&p->queue, &ptr))
pthread_yield(); /* queue empty, let other threads proceed */
}
}
return 0;
}
void * producer_consumer_many(void *ctx)
{
struct param *p = (struct param *) ctx;
srand((unsigned) time(0) + thread_get_id());
size_t nops = rand() % 1000;
/* Wait for global start signal */
while (p->start == 0)
pthread_yield();
/* Wait for a random time */
for (size_t i = 0; i != nops; i += 1)
nop();
void *ptrs[p->batch_size];
for (int iter = 0; iter < p->iter_count; ++iter) {
for (size_t i = 0; i < p->batch_size; i++)
ptrs[i] = (void *) (iter * p->batch_size + i);
int pushed = 0;
do {
pushed += queue_push_many(&p->queue, &ptrs[pushed], p->batch_size - pushed);
if (pushed != p->batch_size)
pthread_yield(); /* queue full, let other threads proceed */
} while (pushed < p->batch_size);
int pulled = 0;
do {
pulled += queue_pull_many(&p->queue, &ptrs[pulled], p->batch_size - pulled);
if (pulled != p->batch_size)
pthread_yield(); /* queue empty, let other threads proceed */
} while (pulled < p->batch_size);
}
return 0;
}
Test(queue, single_threaded)
{
int ret;
struct param p = {
.iter_count = 1 << 8,
.queue_size = 1 << 10,
.start = 1 /* we start immeadiatly */
};
ret = queue_init(&p.queue, p.queue_size, &memtype_heap);
cr_assert_eq(ret, 0, "Failed to create queue");
producer(&p);
consumer(&p);
cr_assert_eq(queue_available(&q), 0);
ret = queue_destroy(&p.queue);
cr_assert_eq(ret, 0, "Failed to create queue");
}
ParameterizedTestParameters(queue, multi_threaded)
{
static struct param params[] = {
{
.iter_count = 1 << 12,
.queue_size = 1 << 9,
.thread_count = 32,
.thread_func = producer_consumer_many,
.batch_size = 10,
.memtype = &memtype_heap
}, {
.iter_count = 1 << 8,
.queue_size = 1 << 9,
.thread_count = 4,
.thread_func = producer_consumer_many,
.batch_size = 100,
.memtype = &memtype_heap
}, {
.iter_count = 1 << 16,
.queue_size = 1 << 9,
.thread_count = 16,
.thread_func = producer_consumer_many,
.batch_size = 100,
.memtype = &memtype_heap
}, {
.iter_count = 1 << 8,
.queue_size = 1 << 9,
.thread_count = 4,
.thread_func = producer_consumer_many,
.batch_size = 10,
.memtype = &memtype_heap
}, {
.iter_count = 1 << 16,
.queue_size = 1 << 9,
.thread_count = 16,
.thread_func = producer_consumer,
.batch_size = 10,
.memtype = &memtype_hugepage
}
};
return cr_make_param_array(struct param, params, ARRAY_LEN(params));
}
ParameterizedTest(struct param *p, queue, multi_threaded, .timeout = 10)
{
int ret, cycpop;
pthread_t threads[p->thread_count];
p->start = 0;
ret = queue_init(&p->queue, p->queue_size, &memtype_heap);
cr_assert_eq(ret, 0, "Failed to create queue");
uint64_t start_tsc_time, end_tsc_time;
for (int i = 0; i < p->thread_count; ++i)
pthread_create(&threads[i], NULL, p->thread_func, &p);
sleep(1);
start_tsc_time = rdtsc();
p->start = 1;
for (int i = 0; i < p->thread_count; ++i)
pthread_join(threads[i], NULL);
end_tsc_time = rdtsc();
cycpop = (end_tsc_time - start_tsc_time) / p->iter_count;
if (cycpop < 400)
cr_log_info("cycles/op: %u\n", cycpop);
else
cr_log_warn("cycles/op are very high (%u). Are you running on a a hypervisor?\n", cycpop);
cr_assert_eq(queue_available(&q), 0);
ret = queue_destroy(&p->queue);
cr_assert_eq(ret, 0, "Failed to create queue");
}
Test(queue, init_destroy)
{
int ret;
struct queue q;
ret = queue_init(&q, 100, &memtype_heap);
cr_assert_eq(ret, -1); /* Should fail as size is not 2^x */
ret = queue_init(&q, 1024, &memtype_heap);
cr_assert_eq(ret, 0); /* Should succeed */
ret = queue_destroy(&q);
cr_assert_eq(ret, 0); /* Should succeed */
}

@ -1 +1 @@
Subproject commit 5b0f2b129046955c004ff56ab2caada5b55ba8e3
Subproject commit 1b687a9f6a0e51c9e9b0a047e1fcd6c94de7a080