| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514 | 
							- /* StarPU --- Runtime system for heterogeneous multicore architectures.
 
-  *
 
-  * Copyright (C) 2009-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.
 
-  */
 
- #define PARALLEL 0
 
- #include <math.h>
 
- #include <pthread.h>
 
- #include <unistd.h>
 
- #include <sys/time.h>
 
- #include <starpu.h>
 
- #include <config.h>
 
- #include "starpufft.h"
 
- #ifdef STARPU_USE_CUDA
 
- #define _externC extern
 
- #include "cudax_kernels.h"
 
- #if defined(FLOAT) || defined(STARPU_HAVE_CUFFTDOUBLECOMPLEX)
 
- #  define __STARPU_USE_CUDA
 
- #else
 
- #  undef __STARPU_USE_CUDA
 
- #endif
 
- #endif
 
- #define _FFTW_FLAGS FFTW_ESTIMATE
 
- /* Steps for the parallel variant */
 
- enum steps
 
- {
 
- 	SPECIAL, TWIST1, FFT1, JOIN, TWIST2, FFT2, TWIST3, END
 
- };
 
- #define NUMBER_BITS 5
 
- #define NUMBER_SHIFT (64 - NUMBER_BITS)
 
- #define STEP_BITS 3
 
- #define STEP_SHIFT (NUMBER_SHIFT - STEP_BITS)
 
- /* Tags for the steps of the parallel variant */
 
- #define _STEP_TAG(plan, step, i) (((starpu_tag_t) plan->number << NUMBER_SHIFT) | ((starpu_tag_t)(step) << STEP_SHIFT) | (starpu_tag_t) (i))
 
- #define I_BITS STEP_SHIFT
 
- enum type
 
- {
 
- 	R2C,
 
- 	C2R,
 
- 	C2C
 
- };
 
- static unsigned task_per_worker[STARPU_NMAXWORKERS];
 
- static unsigned samples_per_worker[STARPU_NMAXWORKERS];
 
- static struct timeval start, submit_tasks, end;
 
- /*
 
-  *
 
-  *	The actual kernels
 
-  *
 
-  */
 
- struct STARPUFFT(plan)
 
- {
 
- 	int number;	/* uniquely identifies the plan, for starpu tags */
 
- 	int *n;
 
- 	int *n1;
 
- 	int *n2;
 
- 	int totsize;
 
- 	int totsize1;	/* Number of first-round tasks */
 
- 	int totsize2;	/* Size of first-round tasks */
 
- 	int totsize3;	/* Number of second-round tasks */
 
- 	int totsize4;	/* Size of second-round tasks */
 
- 	int dim;
 
- 	enum type type;
 
- 	int sign;
 
- 	STARPUFFT(complex) *roots[2];
 
- 	starpu_data_handle_t roots_handle[2];
 
- 	/* For each worker, we need some data */
 
- 	struct
 
- 	{
 
- #ifdef STARPU_USE_CUDA
 
- 		/* CUFFT plans */
 
- 		cufftHandle plan1_cuda, plan2_cuda;
 
- 		/* Sequential version */
 
- 		cufftHandle plan_cuda;
 
- #endif
 
- #ifdef STARPU_HAVE_FFTW
 
- 		/* FFTW plans */
 
- 		_fftw_plan plan1_cpu, plan2_cpu;
 
- 		/* Sequential version */
 
- 		_fftw_plan plan_cpu;
 
- #endif
 
- 	} plans[STARPU_NMAXWORKERS];
 
- 	/* Buffers for codelets */
 
- 	STARPUFFT(complex) *in, *twisted1, *fft1, *twisted2, *fft2, *out;
 
- 	/* corresponding starpu DSM handles */
 
- 	starpu_data_handle_t in_handle, *twisted1_handle, *fft1_handle, *twisted2_handle, *fft2_handle, out_handle;
 
- 	/* Tasks */
 
- 	struct starpu_task **twist1_tasks, **fft1_tasks, **twist2_tasks, **fft2_tasks, **twist3_tasks;
 
- 	struct starpu_task *join_task, *end_task;
 
- 	/* Arguments for tasks */
 
- 	struct STARPUFFT(args) *fft1_args, *fft2_args;
 
- };
 
- struct STARPUFFT(args)
 
- {
 
- 	struct STARPUFFT(plan) *plan;
 
- 	int i, j, jj, kk, ll, *iv, *kkv;
 
- };
 
- static void
 
- check_dims(STARPUFFT(plan) plan)
 
- {
 
- 	int dim;
 
- 	for (dim = 0; dim < plan->dim; dim++)
 
- 		if (plan->n[dim] & (plan->n[dim]-1))
 
- 		{
 
- 			fprintf(stderr,"can't cope with non-power-of-2\n");
 
- 			STARPU_ABORT();
 
- 		}
 
- }
 
- static void
 
- compute_roots(STARPUFFT(plan) plan)
 
- {
 
- 	int dim, k;
 
- 	/* Compute the n-roots and m-roots of unity for twiddling */
 
- 	for (dim = 0; dim < plan->dim; dim++)
 
- 	{
 
- 		STARPUFFT(complex) exp = (plan->sign * 2. * 4.*atan(1.)) * _Complex_I / (STARPUFFT(complex)) plan->n[dim];
 
- 		plan->roots[dim] = malloc(plan->n[dim] * sizeof(**plan->roots));
 
- 		for (k = 0; k < plan->n[dim]; k++)
 
- 			plan->roots[dim][k] = cexp(exp*k);
 
- 		starpu_vector_data_register(&plan->roots_handle[dim], 0, (uintptr_t) plan->roots[dim], plan->n[dim], sizeof(**plan->roots));
 
- #ifdef STARPU_USE_CUDA
 
- 		if (plan->n[dim] > 100000)
 
- 		{
 
- 			/* prefetch the big root array on GPUs */
 
- 			unsigned worker;
 
- 			unsigned nworkers = starpu_worker_get_count();
 
- 			for (worker = 0; worker < nworkers; worker++)
 
- 			{
 
- 				unsigned node = starpu_worker_get_memory_node(worker);
 
- 				if (starpu_worker_get_type(worker) == STARPU_CUDA_WORKER)
 
- 					starpu_data_prefetch_on_node(plan->roots_handle[dim], node, 0);
 
- 			}
 
- 		}
 
- #endif
 
- 	}
 
- }
 
- /* Only CUDA capability >= 1.3 supports doubles, rule old card out.  */
 
- #ifdef DOUBLE
 
- static int can_execute(unsigned workerid, struct starpu_task *task, unsigned nimpl) {
 
- 	if (starpu_worker_get_type(workerid) == STARPU_CPU_WORKER)
 
- 		return 1;
 
- #ifdef STARPU_USE_CUDA
 
- 	{
 
- 		/* Cuda device */
 
- 		const struct cudaDeviceProp *props;
 
- 		props = starpu_cuda_get_device_properties(workerid);
 
- 		if (props->major >= 2 || props->minor >= 3)
 
- 			/* At least compute capability 1.3, supports doubles */
 
- 			return 1;
 
- 		/* Old card does not support doubles */
 
- 		return 0;
 
- 	}
 
- #endif
 
- 	return 0;
 
- }
 
- #define CAN_EXECUTE .can_execute = can_execute,
 
- #else
 
- #define CAN_EXECUTE
 
- #endif
 
- #include "starpufftx1d.c"
 
- #include "starpufftx2d.c"
 
- struct starpu_task *
 
- STARPUFFT(start)(STARPUFFT(plan) plan, void *_in, void *_out)
 
- {
 
- 	struct starpu_task *task;
 
- 	int z;
 
- 	plan->in = _in;
 
- 	plan->out = _out;
 
- 	switch (plan->dim)
 
- 	{
 
- 		case 1:
 
- 		{
 
- 			switch (plan->type)
 
- 			{
 
- 			case C2C:
 
- 				starpu_vector_data_register(&plan->in_handle, 0, (uintptr_t) plan->in, plan->totsize, sizeof(STARPUFFT(complex)));
 
- 				if (!PARALLEL)
 
- 					starpu_vector_data_register(&plan->out_handle, 0, (uintptr_t) plan->out, plan->totsize, sizeof(STARPUFFT(complex)));
 
- 				if (PARALLEL)
 
- 				{
 
- 					for (z = 0; z < plan->totsize1; z++)
 
- 						plan->twist1_tasks[z]->handles[0] = plan->in_handle;
 
- 				}
 
- 				task = STARPUFFT(start1dC2C)(plan, plan->in_handle, plan->out_handle);
 
- 				break;
 
- 			default:
 
- 				STARPU_ABORT();
 
- 				break;
 
- 			}
 
- 			break;
 
- 		}
 
- 		case 2:
 
- 			starpu_vector_data_register(&plan->in_handle, 0, (uintptr_t) plan->in, plan->totsize, sizeof(STARPUFFT(complex)));
 
- 			if (!PARALLEL)
 
- 				starpu_vector_data_register(&plan->out_handle, 0, (uintptr_t) plan->out, plan->totsize, sizeof(STARPUFFT(complex)));
 
- 			if (PARALLEL)
 
- 			{
 
- 				for (z = 0; z < plan->totsize1; z++)
 
- 					plan->twist1_tasks[z]->handles[0] = plan->in_handle;
 
- 			}
 
- 			task = STARPUFFT(start2dC2C)(plan, plan->in_handle, plan->out_handle);
 
- 			break;
 
- 		default:
 
- 			STARPU_ABORT();
 
- 			break;
 
- 	}
 
- 	return task;
 
- }
 
- void
 
- STARPUFFT(cleanup)(STARPUFFT(plan) plan)
 
- {
 
- 	if (plan->in_handle)
 
- 		starpu_data_unregister(plan->in_handle);
 
- 	if (!PARALLEL)
 
- 	{
 
- 		if (plan->out_handle)
 
- 			starpu_data_unregister(plan->out_handle);
 
- 	}
 
- }
 
- struct starpu_task *
 
- STARPUFFT(start_handle)(STARPUFFT(plan) plan, starpu_data_handle_t in, starpu_data_handle_t out)
 
- {
 
- 	return STARPUFFT(start1dC2C)(plan, in, out);
 
- }
 
- int
 
- STARPUFFT(execute)(STARPUFFT(plan) plan, void *in, void *out)
 
- {
 
- 	int ret;
 
- 	memset(task_per_worker, 0, sizeof(task_per_worker));
 
- 	memset(samples_per_worker, 0, sizeof(task_per_worker));
 
- 	gettimeofday(&start, NULL);
 
- 	struct starpu_task *task = STARPUFFT(start)(plan, in, out);
 
- 	gettimeofday(&submit_tasks, NULL);
 
- 	if (task)
 
- 	{
 
- 	     ret = starpu_task_wait(task);
 
- 	     STARPU_ASSERT(ret == 0);
 
- 	}
 
- 	STARPUFFT(cleanup)(plan);
 
- 	gettimeofday(&end, NULL);
 
- 	return (task == NULL ? -1 : 0);
 
- }
 
- int
 
- STARPUFFT(execute_handle)(STARPUFFT(plan) plan, starpu_data_handle_t in, starpu_data_handle_t out)
 
- {
 
- 	int ret;
 
- 	struct starpu_task *task = STARPUFFT(start_handle)(plan, in, out);
 
- 	if (!task) return -1;
 
- 	ret = starpu_task_wait(task);
 
- 	STARPU_ASSERT(ret == 0);
 
- 	return 0;
 
- }
 
- /* Destroy FFTW plans, unregister and free buffers, and free tags */
 
- void
 
- STARPUFFT(destroy_plan)(STARPUFFT(plan) plan)
 
- {
 
- 	int workerid, dim, i;
 
- 	for (workerid = 0; workerid < starpu_worker_get_count(); workerid++)
 
- 	{
 
- 		switch (starpu_worker_get_type(workerid))
 
- 		{
 
- 		case STARPU_CPU_WORKER:
 
- #ifdef STARPU_HAVE_FFTW
 
- 			if (PARALLEL)
 
- 			{
 
- 				_FFTW(destroy_plan)(plan->plans[workerid].plan1_cpu);
 
- 				_FFTW(destroy_plan)(plan->plans[workerid].plan2_cpu);
 
- 			}
 
- 			else
 
- 			{
 
- 				_FFTW(destroy_plan)(plan->plans[workerid].plan_cpu);
 
- 			}
 
- #endif
 
- 			break;
 
- 		case STARPU_CUDA_WORKER:
 
- #ifdef STARPU_USE_CUDA
 
- 			/* FIXME: Can't deallocate */
 
- #endif
 
- 			break;
 
- 		default:
 
- 			/* Do not care, we won't be executing anything there. */
 
- 			break;
 
- 		}
 
- 	}
 
- 	if (PARALLEL)
 
- 	{
 
- 		for (i = 0; i < plan->totsize1; i++)
 
- 		{
 
- 			starpu_data_unregister(plan->twisted1_handle[i]);
 
- 			free(plan->twist1_tasks[i]);
 
- 			starpu_data_unregister(plan->fft1_handle[i]);
 
- 			free(plan->fft1_tasks[i]);
 
- 		}
 
- 		free(plan->twisted1_handle);
 
- 		free(plan->twist1_tasks);
 
- 		free(plan->fft1_handle);
 
- 		free(plan->fft1_tasks);
 
- 		free(plan->fft1_args);
 
- 		free(plan->join_task);
 
- 		for (i = 0; i < plan->totsize3; i++)
 
- 		{
 
- 			starpu_data_unregister(plan->twisted2_handle[i]);
 
- 			free(plan->twist2_tasks[i]);
 
- 			starpu_data_unregister(plan->fft2_handle[i]);
 
- 			free(plan->fft2_tasks[i]);
 
- 			free(plan->twist3_tasks[i]);
 
- 		}
 
- 		free(plan->end_task);
 
- 		free(plan->twisted2_handle);
 
- 		free(plan->twist2_tasks);
 
- 		free(plan->fft2_handle);
 
- 		free(plan->fft2_tasks);
 
- 		free(plan->twist3_tasks);
 
- 		free(plan->fft2_args);
 
- 		for (dim = 0; dim < plan->dim; dim++)
 
- 		{
 
- 			starpu_data_unregister(plan->roots_handle[dim]);
 
- 			free(plan->roots[dim]);
 
- 		}
 
- 		switch (plan->dim)
 
- 		{
 
- 		case 1:
 
- 			STARPUFFT(free_1d_tags)(plan);
 
- 			break;
 
- 		case 2:
 
- 			STARPUFFT(free_2d_tags)(plan);
 
- 			break;
 
- 		default:
 
- 			STARPU_ABORT();
 
- 			break;
 
- 		}
 
- 		free(plan->n1);
 
- 		free(plan->n2);
 
- 		STARPUFFT(free)(plan->twisted1);
 
- 		STARPUFFT(free)(plan->fft1);
 
- 		STARPUFFT(free)(plan->twisted2);
 
- 		STARPUFFT(free)(plan->fft2);
 
- 	}
 
- 	free(plan->n);
 
- 	free(plan);
 
- }
 
- void *
 
- STARPUFFT(malloc)(size_t n)
 
- {
 
- #ifdef STARPU_USE_CUDA
 
- 	void *res;
 
- 	starpu_malloc(&res, n);
 
- 	return res;
 
- #else
 
- #  ifdef STARPU_HAVE_FFTW
 
- 	return _FFTW(malloc)(n);
 
- #  else
 
- 	return malloc(n);
 
- #  endif
 
- #endif
 
- }
 
- void
 
- STARPUFFT(free)(void *p)
 
- {
 
- #ifdef STARPU_USE_CUDA
 
- 	starpu_free(p);
 
- #else
 
- #  ifdef STARPU_HAVE_FFTW
 
- 	_FFTW(free)(p);
 
- #  else
 
- 	free(p);
 
- #  endif
 
- #endif
 
- }
 
- void
 
- STARPUFFT(showstats)(FILE *out)
 
- {
 
- 	int worker;
 
- 	unsigned total;
 
- #define TIMING(begin,end) (double)((end.tv_sec - begin.tv_sec)*1000000 + (end.tv_usec - begin.tv_usec))
 
- #define MSTIMING(begin,end) (TIMING(begin,end)/1000.)
 
- 	double paratiming = TIMING(start,end);
 
- 	fprintf(out, "Tasks submission took %2.2f ms\n", MSTIMING(start,submit_tasks));
 
- 	fprintf(out, "Tasks termination took %2.2f ms\n", MSTIMING(submit_tasks,end));
 
- 	fprintf(out, "Total %2.2f ms\n", MSTIMING(start,end));
 
- 	for (worker = 0, total = 0; worker < starpu_worker_get_count(); worker++)
 
- 		total += task_per_worker[worker];
 
- 	for (worker = 0; worker < starpu_worker_get_count(); worker++)
 
- 	{
 
- 		if (task_per_worker[worker])
 
- 		{
 
- 			char name[32];
 
- 			starpu_worker_get_name(worker, name, sizeof(name));
 
- 			unsigned long bytes = sizeof(STARPUFFT(complex))*samples_per_worker[worker];
 
- 			fprintf(stderr, "\t%s -> %2.2f MB\t%2.2f\tMB/s\t%u %2.2f %%\n", name, (1.0*bytes)/(1024*1024), bytes/paratiming, task_per_worker[worker], (100.0*task_per_worker[worker])/total);
 
- 		}
 
- 	}
 
- }
 
- #ifdef STARPU_USE_CUDA
 
- void
 
- STARPUFFT(report_error)(const char *func, const char *file, int line, cufftResult status)
 
- {
 
- 	char *errormsg;
 
- 	switch (status)
 
- 	{
 
- 	case CUFFT_SUCCESS:
 
- 		errormsg = "success"; /* It'd be weird to get here. */
 
- 		break;
 
- 	case CUFFT_INVALID_PLAN:
 
- 		errormsg = "invalid plan";
 
- 		break;
 
- 	case CUFFT_ALLOC_FAILED:
 
- 		errormsg = "alloc failed";
 
- 		break;
 
- 	case CUFFT_INVALID_TYPE:
 
- 		errormsg = "invalid type";
 
- 		break;
 
- 	case CUFFT_INVALID_VALUE:
 
- 		errormsg = "invalid value";
 
- 		break;
 
- 	case CUFFT_INTERNAL_ERROR:
 
- 		errormsg = "internal error";
 
- 		break;
 
- 	case CUFFT_EXEC_FAILED:
 
- 		errormsg = "exec failed";
 
- 		break;
 
- 	case CUFFT_SETUP_FAILED:
 
- 		errormsg = "setup failed";
 
- 		break;
 
- 	case CUFFT_INVALID_SIZE:
 
- 		errormsg = "invalid size";
 
- 		break;
 
- 	case CUFFT_UNALIGNED_DATA:
 
- 		errormsg = "unaligned data";
 
- 		break;
 
- 	default:
 
- 		errormsg = "unknown error";
 
- 		break;
 
- 	}
 
- 	fprintf(stderr, "oops in %s (%s:%d)... %d: %s\n",
 
- 			func, file, line, status, errormsg);
 
- 	STARPU_ABORT();
 
- }
 
- #endif /* !STARPU_USE_CUDA */
 
 
  |