regressions/ck_ring: More improvements and _size coverage.

SPMC path exercises random delays. Coverage exists for
the new *_enqueue_*_size
ck_pring
Samy Al Bahra 12 years ago
parent 878b8e6321
commit 5c90d917f7

@ -1,7 +1,7 @@
.PHONY: check clean distribution
OBJECTS=ck_ring_spsc ck_ring_spsc_template ck_ring_spmc ck_ring_spmc_template
SIZE=65536
SIZE=16384
all: $(OBJECTS)

@ -66,7 +66,8 @@ test_spmc(void *c)
{
unsigned int observed = 0;
unsigned long previous = 0;
int i, j, tid;
unsigned int seed;
int i, k, j, tid;
(void)c;
if (aff_iterate(&a)) {
@ -81,6 +82,7 @@ test_spmc(void *c)
for (i = 0; i < ITERATIONS; i++) {
for (j = 0; j < size; j++) {
struct entry *o;
int spin;
/* Keep trying until we encounter at least one node. */
if (j & 1) {
@ -107,6 +109,13 @@ test_spmc(void *c)
ck_error("[%p] We dequeued twice.\n", (void *)o);
}
if ((i % 4) == 0) {
spin = common_rand_r(&seed) % 16384;
for (k = 0; k < spin; k++) {
ck_pr_stall();
}
}
free(o);
}
}
@ -120,6 +129,7 @@ test(void *c)
{
struct context *context = c;
struct entry *entry;
unsigned int s;
int i, j;
bool r;
ck_barrier_centralized_state_t sense =
@ -145,7 +155,18 @@ test(void *c)
entries[i].value = i;
entries[i].tid = 0;
r = ck_ring_enqueue_spmc(ring, entries + i);
if (i & 1) {
r = ck_ring_enqueue_spmc(ring, entries + i);
} else {
r = ck_ring_enqueue_spmc_size(ring,
entries + i, &s);
if ((int)s != i) {
ck_error("Size is %u, expected %d.\n",
s, size);
}
}
assert(r != false);
}
@ -180,7 +201,19 @@ test(void *c)
}
entry->tid = context->tid;
r = ck_ring_enqueue_spmc(ring + context->tid, entry);
if (i & 1) {
r = ck_ring_enqueue_spmc(ring + context->tid,
entry);
} else {
r = ck_ring_enqueue_spmc_size(ring + context->tid,
entry, &s);
if ((int)s >= size) {
ck_error("Size %u out of range of %d\n",
s, size);
}
}
assert(r == true);
}
}
@ -268,8 +301,21 @@ main(int argc, char *argv[])
entry->ref = 0;
/* Wait until queue is not full. */
while (ck_ring_enqueue_spmc(&ring_spmc, entry) == false)
ck_pr_stall();
if (l & 1) {
while (ck_ring_enqueue_spmc(&ring_spmc, entry) == false)
ck_pr_stall();
} else {
unsigned int s;
while (ck_ring_enqueue_spmc_size(&ring_spmc,
entry, &s) == false) {
ck_pr_stall();
}
if ((int)s >= (size * ITERATIONS * (nthr - 1))) {
ck_error("MPMC: Unexpected size of %u\n", s);
}
}
}
for (i = 0; i < nthr - 1; i++)

@ -121,6 +121,7 @@ test(void *c)
{
struct context *context = c;
struct entry entry;
unsigned int s;
int i, j;
bool r;
ck_barrier_centralized_state_t sense =
@ -141,7 +142,19 @@ test(void *c)
memset(&entry, 0, sizeof(entry));
entry.value = i;
r = CK_RING_ENQUEUE_SPMC(spmc_ring, ring, &entry);
if (i & 1) {
r = CK_RING_ENQUEUE_SPMC(spmc_ring, ring,
&entry);
} else {
r = CK_RING_ENQUEUE_SPMC_SIZE(spmc_ring, ring,
&entry, &s);
if ((int)s != i) {
ck_error("Size %u, expected %d.\n",
s, i);
}
}
assert(r != false);
}

@ -59,6 +59,7 @@ test(void *c)
{
struct context *context = c;
struct entry *entry;
unsigned int s;
int i, j;
bool r;
ck_barrier_centralized_state_t sense =
@ -84,7 +85,18 @@ test(void *c)
entries[i].value = i;
entries[i].tid = 0;
r = ck_ring_enqueue_spsc(ring, entries + i);
if (i & 1) {
r = ck_ring_enqueue_spsc(ring, entries + i);
} else {
r = ck_ring_enqueue_spsc_size(ring,
entries + i, &s);
if ((int)s != i) {
ck_error("Size is %u, expected %d\n",
s, i + 1);
}
}
assert(r != false);
}
@ -116,7 +128,18 @@ test(void *c)
}
entry->tid = context->tid;
r = ck_ring_enqueue_spsc(ring + context->tid, entry);
if (i & 1) {
r = ck_ring_enqueue_spsc(ring + context->tid,
entry);
} else {
r = ck_ring_enqueue_spsc_size(ring +
context->tid, entry, &s);
if ((int)s >= size) {
ck_error("Size %u is out of range %d\n",
s, size);
}
}
assert(r == true);
}
}

@ -60,6 +60,7 @@ test(void *c)
{
struct context *context = c;
struct entry entry;
unsigned int s;
int i, j;
bool r;
ck_barrier_centralized_state_t sense =
@ -85,7 +86,20 @@ test(void *c)
entries[i].value = i;
entries[i].tid = 0;
r = CK_RING_ENQUEUE_SPSC(entry_ring, ring, entries + i);
if (i & 1) {
r = CK_RING_ENQUEUE_SPSC(entry_ring,
ring, entries + i);
} else {
r = CK_RING_ENQUEUE_SPSC_SIZE(entry_ring,
ring, entries + i, &s);
if ((int)s != i) {
ck_error("Size is %u, expected %d\n",
s, i);
}
}
assert(r != false);
}
if (CK_RING_SIZE(entry_ring, ring) !=
@ -113,7 +127,20 @@ test(void *c)
}
entry.tid = context->tid;
r = CK_RING_ENQUEUE_SPSC(entry_ring, ring + context->tid, &entry);
if (i & 1) {
r = CK_RING_ENQUEUE_SPSC(entry_ring,
ring + context->tid, &entry);
} else {
r = CK_RING_ENQUEUE_SPSC_SIZE(entry_ring,
ring + context->tid, &entry, &s);
if ((int)s >= size) {
ck_error("Size %u is out of range %d\n",
s, size);
}
}
assert(r == true);
}
}

Loading…
Cancel
Save