| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 | /* StarPU --- Runtime system for heterogeneous multicore architectures. * * Copyright (C) 2015                                     Inria * Copyright (C) 2010-2013,2016,2017,2019                 CNRS * Copyright (C) 2010-2012,2015-2017, 2019                Université de Bordeaux * * 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 <starpu.h>#include "../helper.h"/* * Try various values for STARPU_WORKERS_CPUID, checking that the * expected binding does happen */#if !defined(STARPU_HAVE_UNSETENV) || !defined(STARPU_USE_CPU) || !defined(STARPU_HAVE_HWLOC)#warning unsetenv is not defined or no cpu are available. Skipping testint main(void){	return STARPU_TEST_SKIPPED;}#else#include <hwloc.h>#ifdef STARPU_QUICK_CHECK#define CPUSTEP 8#define NB_TESTS 1#else#define CPUSTEP 1#define NB_TESTS 5#endifint nhwpus;long workers_cpuid[STARPU_NMAXWORKERS];int workers_id[STARPU_NMAXWORKERS];static int check_workers_mapping(long *cpuid, int *workerids, int nb_workers){	int i;	for (i=0; i<nb_workers; i++)	{		int workerid = workerids[i];		long bindid = starpu_worker_get_bindid(workerid);		if ( bindid != cpuid[i])		{			fprintf(stderr, "Worker %d (%s) is on cpu %ld rather than on %ld\n",			       workerid, starpu_worker_get_type_as_string(starpu_worker_get_type(workerid)),			       bindid, cpuid[i]);			return 0;		}	}	return 1;}static void copy_cpuid_array(long *dst, long *src, unsigned n){	int i;	memcpy(dst, src, n * sizeof(long));	for (i=n; i<STARPU_NMAXWORKERS; i++)		dst[i] = src[i%n];}static char *array_to_str(long *array, int n){	int i;	int len = n * 3 * sizeof(long);	char *str = malloc(len);	char *ptr = str;	for (i=0; i<n; i++)	{		int nchar;		nchar = snprintf(ptr, len - (ptr-str), "%ld ", array[i]);		ptr += nchar;	}	return str;}static int test_combination(long *combination, unsigned n){	int ret, device_workers;	char *str;	copy_cpuid_array(workers_cpuid, combination, n);	str = array_to_str(workers_cpuid, n);	setenv("STARPU_WORKERS_CPUID", str, 1);	free(str);	ret = starpu_init(NULL);	if (ret == -ENODEV) return STARPU_TEST_SKIPPED;	STARPU_CHECK_RETURN_VALUE(ret, "starpu_init");	device_workers = 0;	/* Check for all cpus */	{		int nb_workers;		nb_workers = starpu_worker_get_ids_by_type(STARPU_CPU_WORKER, workers_id, starpu_worker_get_count());		if (!check_workers_mapping(workers_cpuid + device_workers, workers_id, nb_workers))			return -1;	}	starpu_shutdown();	return 1;}static long * generate_arrangement(int arr_size, long *set, int set_size){	int i;	STARPU_ASSERT(arr_size <= set_size);	srandom(time(0));	for (i=0; i<arr_size; i++)	{		/* Pick a random value in the set */		int j = starpu_lrand48() % (set_size - i);		/* Switch the value picked up with the beginning value of set */		long tmp = set[i+j];		set[i] = set[i+j];		set[i+j] = tmp;	}	return set;}static void init_array(long *a, int n){	int i;	for(i=0; i<n; i++)		a[i] = i;}int main(void){	int i;	long *cpuids;	hwloc_topology_t topology;	hwloc_topology_init(&topology);	hwloc_topology_load(topology);	nhwpus = hwloc_get_nbobjs_by_type(topology, HWLOC_OBJ_PU);	if (nhwpus > STARPU_NMAXWORKERS)		nhwpus = STARPU_NMAXWORKERS;	setenv("STARPU_NCUDA","0",1);	setenv("STARPU_NOPENCL","0",1);	setenv("STARPU_NMIC","0",1);	setenv("STARPU_NMPI_MS","0",1);	unsetenv("STARPU_NCPUS");	for (i=0; i<STARPU_NMAXWORKERS; i++)		workers_id[i] = -1;	cpuids = malloc(nhwpus * sizeof(long));	/* Evaluate several random values of STARPU_WORKERS_CPUID	 * and check mapping for each one	 */	for (i=1; i<=nhwpus; i += CPUSTEP)	{		int j;		for (j=0; j<NB_TESTS; j++)		{			int ret;			init_array(cpuids, nhwpus);			generate_arrangement(i, cpuids, nhwpus);			ret = test_combination(cpuids, i);			if (ret == STARPU_TEST_SKIPPED) return STARPU_TEST_SKIPPED;			if (ret != 1)			{				free(cpuids);				hwloc_topology_destroy(topology);				return EXIT_FAILURE;			}		}	}	free(cpuids);	hwloc_topology_destroy(topology);	return EXIT_SUCCESS;}#endif
 |