| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238 | /* StarPU --- Runtime system for heterogeneous multicore architectures. * * Copyright (C) 2010-2012  Université de Bordeaux 1 * Copyright (C) 2010, 2011, 2012  Centre National de la Recherche Scientifique * * StarPU is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or (at * your option) any later version. * * StarPU is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * See the GNU Lesser General Public License in COPYING.LGPL for more details. */#include <config.h>#include <starpu.h>#include <errno.h>#include <pthread.h>#include "../helper.h"#define NTHREADS	4#define NITER		2//static pthread_cond_t cond;//static pthread_mutex_t mutex;struct thread_data{	unsigned index;	unsigned val;	starpu_data_handle_t handle;	pthread_t thread;	_starpu_pthread_cond_t recv_cond;	_starpu_pthread_mutex_t recv_mutex;	unsigned recv_flag; // set when a message is received	unsigned recv_buf;	struct thread_data *neighbour;};static struct thread_data problem_data[NTHREADS];/* We implement some ring transfer, every thread will try to receive a piece of * data from its neighbour and increment it before transmitting it to its * successor. */#ifdef STARPU_USE_CUDAvoid cuda_codelet_unsigned_inc(void *descr[], __attribute__ ((unused)) void *cl_arg);#endif#ifdef STARPU_USE_OPENCLvoid opencl_codelet_unsigned_inc(void *buffers[], void *args);#endifstatic void increment_handle_cpu_kernel(void *descr[], void *cl_arg __attribute__((unused))){	STARPU_SKIP_IF_VALGRIND;	unsigned *val = (unsigned *)STARPU_VARIABLE_GET_PTR(descr[0]);	*val += 1;}static struct starpu_codelet increment_handle_cl ={	.modes = { STARPU_RW },	.cpu_funcs = {increment_handle_cpu_kernel, NULL},#ifdef STARPU_USE_CUDA	.cuda_funcs = {cuda_codelet_unsigned_inc, NULL},#endif#ifdef STARPU_USE_OPENCL	.opencl_funcs = {opencl_codelet_unsigned_inc, NULL},#endif	.nbuffers = 1};static void increment_handle(struct thread_data *thread_data){	struct starpu_task *task = starpu_task_create();	task->cl = &increment_handle_cl;	task->handles[0] = thread_data->handle;	task->cl_arg = thread_data;	task->destroy = 1;	task->detach = 0;	int ret = starpu_task_submit(task);	if (ret == -ENODEV)		exit(STARPU_TEST_SKIPPED);	STARPU_ASSERT(!ret);	ret = starpu_task_wait(task);	STARPU_ASSERT(!ret);}static void recv_handle(struct thread_data *thread_data){	starpu_data_acquire(thread_data->handle, STARPU_W);	_STARPU_PTHREAD_MUTEX_LOCK(&thread_data->recv_mutex);	/* We wait for the previous thread to notify that the data is available */	while (!thread_data->recv_flag)		_STARPU_PTHREAD_COND_WAIT(&thread_data->recv_cond, &thread_data->recv_mutex);	/* We overwrite thread's data with the received value */	thread_data->val = thread_data->recv_buf;	/* Notify that we read the value */	thread_data->recv_flag = 0;	_STARPU_PTHREAD_COND_SIGNAL(&thread_data->recv_cond);//	FPRINTF(stderr, "Thread %d received value %d from thread %d\n", thread_data->index, thread_data->val, (thread_data->index - 1)%NTHREADS);	_STARPU_PTHREAD_MUTEX_UNLOCK(&thread_data->recv_mutex);	starpu_data_release(thread_data->handle);}static void send_handle(struct thread_data *thread_data){	struct thread_data *neighbour_data = thread_data->neighbour;	starpu_data_acquire(thread_data->handle, STARPU_R);//	FPRINTF(stderr, "Thread %d sends value %d to thread %d\n", thread_data->index, thread_data->val, neighbour_data->index);	/* send the message */	_STARPU_PTHREAD_MUTEX_LOCK(&neighbour_data->recv_mutex);	neighbour_data->recv_buf = thread_data->val;	neighbour_data->recv_flag = 1;	_STARPU_PTHREAD_COND_SIGNAL(&neighbour_data->recv_cond);	/* wait until it's received (ie. neighbour's recv_flag is set back to 0) */	while (neighbour_data->recv_flag)		_STARPU_PTHREAD_COND_WAIT(&neighbour_data->recv_cond, &neighbour_data->recv_mutex);	_STARPU_PTHREAD_MUTEX_UNLOCK(&neighbour_data->recv_mutex);	starpu_data_release(thread_data->handle);}static void *thread_func(void *arg){	unsigned iter;	struct thread_data *thread_data = (struct thread_data *) arg;	unsigned index = thread_data->index;	starpu_variable_data_register(&thread_data->handle, 0, (uintptr_t)&thread_data->val, sizeof(unsigned));	for (iter = 0; iter < NITER; iter++)	{		/* The first thread initiates the first transfer */		if (!((index == 0) && (iter == 0)))		{			recv_handle(thread_data);		}		increment_handle(thread_data);		if (!((index == (NTHREADS - 1)) && (iter == (NITER - 1))))		{			send_handle(thread_data);		}	}	return NULL;}#ifdef STARPU_USE_OPENCLstruct starpu_opencl_program opencl_program;#endifint main(int argc, char **argv){	int ret;	ret = starpu_init(NULL);	if (ret == -ENODEV) return STARPU_TEST_SKIPPED;	STARPU_CHECK_RETURN_VALUE(ret, "starpu_init");#ifdef STARPU_USE_OPENCL	ret = starpu_opencl_load_opencl_from_file("tests/datawizard/opencl_codelet_unsigned_inc_kernel.cl",						  &opencl_program, NULL);	STARPU_CHECK_RETURN_VALUE(ret, "starpu_opencl_load_opencl_from_file");#endif	unsigned t;	for (t = 0; t < NTHREADS; t++)	{		problem_data[t].index = t;		problem_data[t].val = 0;		_STARPU_PTHREAD_COND_INIT(&problem_data[t].recv_cond, NULL);		_STARPU_PTHREAD_MUTEX_INIT(&problem_data[t].recv_mutex, NULL);		problem_data[t].recv_flag = 0;		problem_data[t].neighbour = &problem_data[(t+1)%NTHREADS];	}	for (t = 0; t < NTHREADS; t++)	{		ret = pthread_create(&problem_data[t].thread, NULL, thread_func, &problem_data[t]);		STARPU_ASSERT(!ret);	}	for (t = 0; t < NTHREADS; t++)	{		void *retval;		ret = pthread_join(problem_data[t].thread, &retval);		STARPU_ASSERT(!ret);		STARPU_ASSERT(retval == NULL);	}	/* We check that the value in the "last" thread is valid */	starpu_data_handle_t last_handle = problem_data[NTHREADS - 1].handle;	starpu_data_acquire(last_handle, STARPU_R);	starpu_data_release(last_handle);	for (t = 0; t < NTHREADS; t++)	{		starpu_data_unregister(problem_data[t].handle);	}#ifdef STARPU_USE_OPENCL        ret = starpu_opencl_unload_opencl(&opencl_program);        STARPU_CHECK_RETURN_VALUE(ret, "starpu_opencl_unload_opencl");#endif	starpu_shutdown();	ret = EXIT_SUCCESS;	if (problem_data[NTHREADS - 1].val != (NTHREADS * NITER))	{		FPRINTF(stderr, "Final value : %u should be %d\n", problem_data[NTHREADS - 1].val, (NTHREADS * NITER));		ret = EXIT_FAILURE;	}	STARPU_RETURN(ret);}
 |