| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 | /* StarPU --- Runtime system for heterogeneous multicore architectures. * * Copyright (C) 2017-2020  Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria * * 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. */#define __COMMON_UTILS_H__#define _STARPU_MALLOC(p, s) do {p = malloc(s);} while (0)#define _STARPU_CALLOC(p, n, s) do {p = calloc(n, s);} while (0)#define _STARPU_REALLOC(p, s) do {p = realloc(p, s);} while (0)#define STARPU_HG_DISABLE_CHECKING(v) ((void) 0)#define STARPU_HG_ENABLE_CHECKING(v) ((void) 0)#define ANNOTATE_HAPPENS_AFTER(v) ((void) 0)#define ANNOTATE_HAPPENS_BEFORE(v) ((void) 0)#define STARPU_DEBUG_PREFIX "[starpu]"#ifdef STARPU_VERBOSE#  define _STARPU_DEBUG(fmt, ...) do { if (!_starpu_silent) {fprintf(stderr, STARPU_DEBUG_PREFIX"[%s] " fmt ,__starpu_func__ ,## __VA_ARGS__); fflush(stderr); }} while(0)#else#  define _STARPU_DEBUG(fmt, ...) do { } while (0)#endif#define STARPU_UYIELD() ((void)0)#ifndef NOCONFIG#include <common/config.h>#else#ifndef _GNU_SOURCE#define _GNU_SOURCE 1#endif// Assuming recent simgrid#define STARPU_HAVE_SIMGRID_MSG_H#define STARPU_HAVE_SIMGRID_SEMAPHORE_H#define STARPU_HAVE_SIMGRID_MUTEX_H#define STARPU_HAVE_SIMGRID_COND_H#define STARPU_HAVE_SIMGRID_BARRIER_H#define STARPU_HAVE_XBT_SYNCHRO_H#define HAVE_SIMGRID_GET_CLOCK#define HAVE_SG_ACTOR_SLEEP_FOR#define HAVE_SG_CFG_SET_INT#endif#include <unistd.h>#include <stdlib.h>#include <stdio.h>#include <limits.h>#include <math.h>#include <common/barrier.h>#ifdef STARPU_HAVE_SIMGRID_MSG_H#include <simgrid/msg.h>#else#include <msg/msg.h>#endif#include <simgrid/modelchecker.h>#ifdef STARPU_HAVE_XBT_SYNCHRO_H#include <xbt/synchro.h>#else#include <xbt/synchro_core.h>#endif/* common/thread.c references these, but doesn't need to have them working anyway */int_starpu_simgrid_thread_start(int argc, char *argv[]){	return 0;}size_t _starpu_default_stack_size = 8192;void_starpu_simgrid_set_stack_size(size_t stack_size){}starpu_sg_host_t _starpu_simgrid_get_host_by_name(const char *name){}static void _starpu_clock_gettime(struct timespec *ts){#ifdef HAVE_SIMGRID_GET_CLOCK	double now = simgrid_get_clock();#else	double now = MSG_get_clock();#endif	ts->tv_sec = floor(now);	ts->tv_nsec = floor((now - ts->tv_sec) * 1000000000);}void starpu_sleep(float nb_sec){#ifdef HAVE_SG_ACTOR_SLEEP_FOR	sg_actor_sleep_for(nb_sec);#else	MSG_process_sleep(nb_sec);#endif}#include <common/barrier.c>#undef STARPU_DEBUGint starpu_worker_get_id(void) { return 0; }static inline unsigned _starpu_worker_mutex_is_sched_mutex(int workerid, starpu_pthread_mutex_t *mutex) { return 0; }#include <common/thread.c>#ifndef NTHREADS#define NTHREADS 2#endif#ifndef NITERS#define NITERS 1#endifstruct _starpu_barrier barrier;int worker(int argc, char *argv[]){	unsigned iter;	for (iter = 0; iter < NITERS; iter++)	{		MC_assert(barrier.count <= NTHREADS);		_starpu_barrier_wait(&barrier);	}	return 0;}int master(int argc, char *argv[]){	unsigned i;	_starpu_barrier_init(&barrier, NTHREADS);	for (i = 0; i < NTHREADS; i++)	{		char *s;		asprintf(&s, "%d\n", i);		char **args = malloc(sizeof(char*)*2);		args[0] = s;		args[1] = NULL;		MSG_process_create_with_arguments("test", worker, NULL, MSG_host_self(), 1, args);	}	return 0;}#undef mainint main(int argc, char *argv[]){	if (argc < 3)	{		fprintf(stderr,"usage: %s platform.xml host\n", argv[0]);		exit(EXIT_FAILURE);	}	srand48(0);	MSG_init(&argc, argv);#ifdef HAVE_SG_CFG_SET_INT	sg_cfg_set_int("contexts/stack-size", 128);#elif SIMGRID_VERSION_MAJOR < 3 || (SIMGRID_VERSION_MAJOR == 3 && SIMGRID_VERSION_MINOR < 13)	extern xbt_cfg_t _sg_cfg_set;	xbt_cfg_set_int(_sg_cfg_set, "contexts/stack-size", 128);#else	xbt_cfg_set_int("contexts/stack-size", 128);#endif	MSG_create_environment(argv[1]);	MSG_process_create("master", master, NULL, MSG_get_host_by_name(argv[2]));	MSG_main();	return 0;}
 |