| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 | /* StarPU --- Runtime system for heterogeneous multicore architectures. * * Copyright (C) 2009, 2010  Université de Bordeaux 1 * Copyright (C) 2010, 2011  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. */#ifndef __DW_CHOLESKY_H__#define __DW_CHOLESKY_H__#include <semaphore.h>#include <string.h>#include <math.h>#include <sys/time.h>#include <limits.h>#ifdef STARPU_USE_CUDA#include <cuda.h>#include <cuda_runtime.h>#include <cublas.h>#endif#include <common/blas.h>#include <starpu.h>#define NMAXBLOCKS	32#define BLOCKSIZE	(size/nblocks)static unsigned size = 4*1024;static unsigned nblocks = 16;static unsigned nbigblocks = 8;static unsigned noprio = 0;static unsigned display = 0;static void __attribute__((unused)) parse_args(int argc, char **argv){	int i;	for (i = 1; i < argc; i++) {		if (strcmp(argv[i], "-size") == 0) {		        char *argptr;			long int ret;			ret = strtol(argv[++i], &argptr, 10);			if (*argptr != '\0') {				fprintf(stderr, "Invalid size %s, aborting \n", argv[i]);				exit(EXIT_FAILURE);			}			if (ret == LONG_MIN || ret == LONG_MAX) {				perror("strtol");				exit(EXIT_FAILURE);			}			if (ret == 0) {				fprintf(stderr, "0 is not a valid size\n");				exit(EXIT_FAILURE);			}			size = ret;		}		if (strcmp(argv[i], "-nblocks") == 0) {		        char *argptr;			nblocks = strtol(argv[++i], &argptr, 10);		}		if (strcmp(argv[i], "-nbigblocks") == 0) {		        char *argptr;			nbigblocks = strtol(argv[++i], &argptr, 10);		}		if (strcmp(argv[i], "-no-prio") == 0) {			noprio = 1;		}		if (strcmp(argv[i], "-display") == 0) {			display = 1;		}		if (strcmp(argv[i], "-h") == 0) {			printf("usage : %s [-display] [-size size] [-nblocks nblocks]\n", argv[0]);		}	}	if (nblocks > size) nblocks = size;}#endif // __DW_CHOLESKY_H__
 |