Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup some pthread tests. NFC #21293

Merged
merged 1 commit into from
Feb 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
155 changes: 155 additions & 0 deletions test/pthread/test_pthread_64bit_atomics.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,155 @@
// Copyright 2015 The Emscripten Authors. All rights reserved.
// Emscripten is available under two separate licenses, the MIT license and the
// University of Illinois/NCSA Open Source License. Both these licenses can be
// found in the LICENSE file.

#include <stdio.h>
#include <stdlib.h>
#include <memory.h>
#include <pthread.h>
#include <emscripten.h>
#include <emscripten/threading.h>
#include <emscripten/console.h>
#include <assert.h>

#define NUM_THREADS 8
#define DATA_COUNT 10

volatile double globalDouble = 0.0;
volatile uint64_t globalU64 = 0;

uint64_t sharedData[DATA_COUNT] = {};

struct Test {
int op;
int threadId;
};

uint64_t threadCasAccumulatedWrittenData[NUM_THREADS] = {};
uint64_t threadCasAccumulatedReadData[NUM_THREADS] = {};

int64_t rand_60() {
return (int64_t)(emscripten_random() * (float)0x3FFFFFFF) | ((int64_t)(emscripten_random() * (float)0x3FFFFFFF) << 30);
}

void *ThreadMain(void *arg) {
assert(pthread_self() != 0);
assert(globalDouble == 5.0);
assert(globalU64 == 5);
struct Test *t = (struct Test*)arg;
emscripten_outf("Thread %d for test %d: starting computation", t->threadId, t->op);

for (int i = 0; i < 99999; ++i) {
for (int j = 0; j < DATA_COUNT; ++j) {
switch (t->op) {
case 0: emscripten_atomic_add_u64(&sharedData[j], 1); break;
case 1: emscripten_atomic_sub_u64(&sharedData[j], 1); break;
case 2: emscripten_atomic_and_u64(&sharedData[j], ~(1UL << t->threadId)); break;
case 3: emscripten_atomic_or_u64(&sharedData[j], 1UL << t->threadId); break;
case 4: emscripten_atomic_xor_u64(&sharedData[j], 1UL << t->threadId); break;
case 5: {
// Atomically load and store data, and test that each individual u8 is the same.
uint64_t data = emscripten_atomic_load_u64(&sharedData[j]);
uint8_t dataU8[8];
memcpy(dataU8, &data, 8);
assert(dataU8[0] >= 10 && dataU8[0] < 10+NUM_THREADS);
assert(dataU8[0] == dataU8[1] && dataU8[0] == dataU8[2] && dataU8[0] == dataU8[3]);
assert(dataU8[0] == dataU8[4] && dataU8[0] == dataU8[5] && dataU8[0] == dataU8[6] && dataU8[0] == dataU8[7]);
dataU8[0] = dataU8[1] = dataU8[2] = dataU8[3] = dataU8[4] = dataU8[5] = dataU8[6] = dataU8[7] = 10 + t->threadId;
memcpy(&data, dataU8, 8);
emscripten_atomic_store_u64(&sharedData[j], data);
}
break;
case 6: {
uint64_t newData = rand_60();
uint64_t data;
uint64_t prevData;
do {
data = emscripten_atomic_load_u64(&sharedData[j]);
prevData = emscripten_atomic_cas_u64(&sharedData[j], data, newData);
} while(prevData != data);
threadCasAccumulatedReadData[t->threadId] += data;
threadCasAccumulatedWrittenData[t->threadId] += newData;
}
break;
}
}
}
emscripten_outf("Thread %d for test %d: finished, exit()ing", t->threadId, t->op);
pthread_exit(0);
}

struct Test t[NUM_THREADS] = {};
pthread_t thread[NUM_THREADS];

void RunTest(int test) {
pthread_attr_t attr;
pthread_attr_init(&attr);
pthread_attr_setstacksize(&attr, 4*1024);

emscripten_outf("Main thread has thread ID %p\n", pthread_self());
assert(pthread_self() != 0);

switch(test) {
case 2: memset(sharedData, 0xFF, sizeof(sharedData)); break;
case 5: memset(sharedData, 0x10, sizeof(sharedData)); break;
default: memset(sharedData, 0, sizeof(sharedData)); break;
}

emscripten_outf("Main: Starting test %d", test);

for (int i = 0; i < NUM_THREADS; ++i) {
t[i].op = test;
t[i].threadId = i;
int rc = pthread_create(&thread[i], &attr, ThreadMain, &t[i]);
assert(rc == 0);
}

pthread_attr_destroy(&attr);

for (int i = 0; i < NUM_THREADS; ++i) {
int status = 1;
int rc = pthread_join(thread[i], (void**)&status);
assert(rc == 0);
assert(status == 0);
}

int val = sharedData[0];
emscripten_outf("Main: Test %d finished. Result: %d", test, val);
if (test != 6) {
for (int i = 1; i < DATA_COUNT; ++i) {
assert(sharedData[i] == sharedData[0]);
}
}
}

int main() {
globalDouble = 5.0;
globalU64 = 4;

uint64_t prevU64 = emscripten_atomic_add_u64((void*)&globalU64, 1);
assert(prevU64 == 4);

for (int i = 0; i < 7; ++i) {
RunTest(i);
}

uint64_t totalRead = 0;
uint64_t totalWritten = 0;
for (int i = 0; i < NUM_THREADS; ++i) {
totalRead += threadCasAccumulatedReadData[i];
totalWritten += threadCasAccumulatedWrittenData[i];
}
for (int i = 0; i < DATA_COUNT; ++i) {
totalRead += sharedData[i];
}

if (totalRead == totalWritten) {
emscripten_outf("totalRead: %llu, totalWritten: %llu\n", totalRead, totalWritten);
} else {
emscripten_outf("64-bit CAS test failed! totalRead != totalWritten (%llu != %llu)\n", totalRead, totalWritten);
}
assert(totalRead == totalWritten);
emscripten_outf("Main: Test successfully finished");
return 0;
}
162 changes: 0 additions & 162 deletions test/pthread/test_pthread_64bit_atomics.cpp

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,16 @@
#define NUM_THREADS 8
#define N 6

static void *thread_start(void *arg)
{
static void *thread_start(void *arg) {
long n = (long)arg;
long *mem[N] = {};
for(long i = 0; i < N; ++i)
{
for (long i = 0; i < N; ++i) {
mem[i] = (long*)malloc(4);
*mem[i] = n+i;
}
for(long i = 0; i < N; ++i)
{
for (long i = 0; i < N; ++i) {
long k = *mem[i];
if (k != n+i)
{
if (k != n+i) {
emscripten_errf("Memory corrupted! mem[i]: %ld, i: %ld, n: %ld", k, i, n);
pthread_exit((void*)1);
}
Expand All @@ -37,13 +33,13 @@ static void *thread_start(void *arg)
pthread_exit(0);
}

int main()
{
int main() {
pthread_t thr[NUM_THREADS];
for(intptr_t i = 0; i < NUM_THREADS; ++i)
for (intptr_t i = 0; i < NUM_THREADS; ++i) {
pthread_create(&thr[i], NULL, thread_start, (void*)(i*N));
}
int result = 0;
for(int i = 0; i < NUM_THREADS; ++i) {
for (int i = 0; i < NUM_THREADS; ++i) {
int res = 0;
pthread_join(thr[i], (void**)&res);
result += res;
Expand Down
Loading
Loading