| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486 | 
							- /* StarPU --- Runtime system for heterogeneous multicore architectures.
 
-  *
 
-  * Copyright (C) 2012-2013,2017                           Inria
 
-  * Copyright (C) 2008-2011,2014-2015,2017                 Université de Bordeaux
 
-  * Copyright (C) 2010-2013,2015-2017                      CNRS
 
-  *
 
-  * 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.
 
-  */
 
- /*
 
-  * Conjugate gradients for Sparse matrices
 
-  * The task graph is declared through tag dependencies
 
-  */
 
- #include "dw_sparse_cg.h"
 
- #define FPRINTF(ofile, fmt, ...) do { if (!getenv("STARPU_SSILENT")) {fprintf(ofile, fmt, ## __VA_ARGS__); }} while(0)
 
- static struct starpu_task *create_task(starpu_tag_t id)
 
- {
 
- 	struct starpu_task *task = starpu_task_create();
 
- 		task->use_tag = 1;
 
- 		task->tag_id = id;
 
- 	return task;
 
- }
 
- static void create_data(float **_nzvalA, float **_vecb, float **_vecx, uint32_t *_nnz, uint32_t *_nrow, uint32_t **_colind, uint32_t **_rowptr)
 
- {
 
- 	/* we need a sparse symetric (definite positive ?) matrix and a "dense" vector */
 
- 	/* example of 3-band matrix */
 
- 	float *nzval;
 
- 	uint32_t nnz;
 
- 	uint32_t *colind;
 
- 	uint32_t *rowptr;
 
- 	nnz = 3*_size-2;
 
- 	nzval = malloc(nnz*sizeof(float));
 
- 	colind = malloc(nnz*sizeof(uint32_t));
 
- 	rowptr = malloc(_size*sizeof(uint32_t));
 
- 	assert(nzval);
 
- 	assert(colind);
 
- 	assert(rowptr);
 
- 	/* fill the matrix */
 
- 	unsigned row;
 
- 	unsigned pos = 0;
 
- 	for (row = 0; row < _size; row++)
 
- 	{
 
- 		rowptr[row] = pos;
 
- 		if (row > 0)
 
- 		{
 
- 			nzval[pos] = 1.0f;
 
- 			colind[pos] = row-1;
 
- 			pos++;
 
- 		}
 
- 		nzval[pos] = 5.0f;
 
- 		colind[pos] = row;
 
- 		pos++;
 
- 		if (row < _size - 1)
 
- 		{
 
- 			nzval[pos] = 1.0f;
 
- 			colind[pos] = row+1;
 
- 			pos++;
 
- 		}
 
- 	}
 
- 	*_nnz = nnz;
 
- 	*_nrow = _size;
 
- 	*_nzvalA = nzval;
 
- 	*_colind = colind;
 
- 	*_rowptr = rowptr;
 
- 	STARPU_ASSERT(pos == nnz);
 
- 	/* initiate the 2 vectors */
 
- 	float *invec, *outvec;
 
- 	invec = malloc(_size*sizeof(float));
 
- 	assert(invec);
 
- 	outvec = malloc(_size*sizeof(float));
 
- 	assert(outvec);
 
- 	/* fill those */
 
- 	unsigned ind;
 
- 	for (ind = 0; ind < _size; ind++)
 
- 	{
 
- 		invec[ind] = 2.0f;
 
- 		outvec[ind] = 0.0f;
 
- 	}
 
- 	*_vecb = invec;
 
- 	*_vecx = outvec;
 
- }
 
- void init_problem(void)
 
- {
 
- 	/* create the sparse input matrix */
 
- 	float *nzval;
 
- 	float *vecb;
 
- 	float *vecx;
 
- 	uint32_t nnz;
 
- 	uint32_t nrow;
 
- 	uint32_t *colind;
 
- 	uint32_t *rowptr;
 
- 	create_data(&nzval, &vecb, &vecx, &nnz, &nrow, &colind, &rowptr);
 
- 	conjugate_gradient(nzval, vecb, vecx, nnz, nrow, colind, rowptr);
 
- }
 
- /*
 
-  *	cg initialization phase
 
-  */
 
- static struct starpu_codelet cl1 =
 
- {
 
- 	.cpu_funcs = { cpu_codelet_func_1 },
 
- 	.cpu_funcs_name = { "cpu_codelet_func_1" },
 
- 	.nbuffers = 4,
 
- 	.modes = { STARPU_R, STARPU_R, STARPU_W, STARPU_R },
 
- };
 
- static struct starpu_codelet cl2 =
 
- {
 
- 	.cpu_funcs = { cpu_codelet_func_2 },
 
- 	.cpu_funcs_name = { "cpu_codelet_func_2" },
 
- 	.nbuffers = 2,
 
- 	.modes = { STARPU_W, STARPU_R },
 
- };
 
- static struct starpu_codelet cl3 =
 
- {
 
- 	.cpu_funcs = { cpu_codelet_func_3 },
 
- 	.cpu_funcs_name = { "cpu_codelet_func_3" },
 
- #ifdef STARPU_USE_CUDA
 
- 	.cuda_funcs = { cublas_codelet_func_3 },
 
- #endif
 
- 	.nbuffers = 1,
 
- 	.modes = { STARPU_R },
 
- };
 
- void init_cg(struct cg_problem *problem)
 
- {
 
- 	int ret;
 
- 	problem->i = 0;
 
- 	/* r = b  - A x */
 
- 	struct starpu_task *task1 = create_task(1UL);
 
- 	task1->cl = &cl1;
 
- 	task1->handles[0] = problem->ds_matrixA;
 
- 	task1->handles[1] = problem->ds_vecx;
 
- 	task1->handles[2] = problem->ds_vecr;
 
- 	task1->handles[3] = problem->ds_vecb;
 
- 	/* d = r */
 
- 	struct starpu_task *task2 = create_task(2UL);
 
- 	task2->cl = &cl2;
 
- 	task2->handles[0] = problem->ds_vecd;
 
- 	task2->handles[1] = problem->ds_vecr;
 
- 	starpu_tag_declare_deps((starpu_tag_t)2UL, 1, (starpu_tag_t)1UL);
 
- 	/* delta_new = trans(r) r */
 
- 	struct starpu_task *task3 = create_task(3UL);
 
- 	task3->cl = &cl3;
 
- 	task3->cl_arg = problem;
 
- 	task3->cl_arg_size = sizeof(*problem);
 
- 	task3->handles[0] = problem->ds_vecr;
 
- 	task3->callback_func = iteration_cg;
 
- 	task3->callback_arg = problem;
 
- 	/* XXX 3 should only depend on 1 ... */
 
- 	starpu_tag_declare_deps((starpu_tag_t)3UL, 1, (starpu_tag_t)2UL);
 
- 	/* launch the computation now */
 
- 	ret = starpu_task_submit(task1);
 
- 	if (STARPU_UNLIKELY(ret == -ENODEV))
 
- 	{
 
- 		FPRINTF(stderr, "No worker may execute this task\n");
 
- 		exit(0);
 
- 	}
 
- 	STARPU_CHECK_RETURN_VALUE(ret, "starpu_task_submit");
 
- 	ret = starpu_task_submit(task2);
 
- 	STARPU_CHECK_RETURN_VALUE(ret, "starpu_task_submit");
 
- 	ret = starpu_task_submit(task3);
 
- 	STARPU_CHECK_RETURN_VALUE(ret, "starpu_task_submit");
 
- }
 
- /*
 
-  *	the inner iteration of the cg algorithm
 
-  *		the codelet code launcher is its own callback !
 
-  */
 
- static struct starpu_codelet cl4 =
 
- {
 
- 	.cpu_funcs = { cpu_codelet_func_4 },
 
- 	.cpu_funcs_name = { "cpu_codelet_func_4" },
 
- 	.nbuffers = 3,
 
- 	.modes = { STARPU_R, STARPU_R, STARPU_W },
 
- };
 
- static struct starpu_codelet cl5 =
 
- {
 
- 	.cpu_funcs = { cpu_codelet_func_5 },
 
- 	.cpu_funcs_name = { "cpu_codelet_func_5" },
 
- #ifdef STARPU_USE_CUDA
 
- 	.cuda_funcs = { cublas_codelet_func_5 },
 
- #endif
 
- 	.nbuffers = 2,
 
- 	.modes = { STARPU_R, STARPU_R },
 
- };
 
- static struct starpu_codelet cl6 =
 
- {
 
- 	.cpu_funcs = { cpu_codelet_func_6 },
 
- 	.cpu_funcs_name = { "cpu_codelet_func_6" },
 
- #ifdef STARPU_USE_CUDA
 
- 	.cuda_funcs = { cublas_codelet_func_6 },
 
- 	.cuda_flags = { STARPU_CUDA_ASYNC },
 
- #endif
 
- 	.nbuffers = 2,
 
- 	.modes = { STARPU_RW, STARPU_R },
 
- };
 
- static struct starpu_codelet cl7 =
 
- {
 
- 	.cpu_funcs = { cpu_codelet_func_7 },
 
- 	.cpu_funcs_name = { "cpu_codelet_func_7" },
 
- #ifdef STARPU_USE_CUDA
 
- 	.cuda_funcs = { cublas_codelet_func_7 },
 
- 	.cuda_flags = { STARPU_CUDA_ASYNC },
 
- #endif
 
- 	.nbuffers = 2,
 
- 	.modes = { STARPU_RW, STARPU_R },
 
- };
 
- static struct starpu_codelet cl8 =
 
- {
 
- 	.cpu_funcs = { cpu_codelet_func_8 },
 
- 	.cpu_funcs_name = { "cpu_codelet_func_8" },
 
- #ifdef STARPU_USE_CUDA
 
- 	.cuda_funcs = { cublas_codelet_func_8 },
 
- #endif
 
- 	.nbuffers = 1,
 
- 	.modes = { STARPU_R },
 
- };
 
- static struct starpu_codelet cl9 =
 
- {
 
- 	.cpu_funcs = { cpu_codelet_func_9 },
 
- 	.cpu_funcs_name = { "cpu_codelet_func_9" },
 
- #ifdef STARPU_USE_CUDA
 
- 	.cuda_funcs = { cublas_codelet_func_9 },
 
- 	.cuda_flags = { STARPU_CUDA_ASYNC },
 
- #endif
 
- 	.nbuffers = 2,
 
- 	.modes = { STARPU_RW, STARPU_R },
 
- };
 
- void launch_new_cg_iteration(struct cg_problem *problem)
 
- {
 
- 	int ret;
 
- 	unsigned iter = problem->i;
 
- 	unsigned long long maskiter = ((unsigned long long)iter*1024);
 
- 	/* q = A d */
 
- 	struct starpu_task *task4 = create_task(maskiter | 4UL);
 
- 	task4->cl = &cl4;
 
- 	task4->handles[0] = problem->ds_matrixA;
 
- 	task4->handles[1] = problem->ds_vecd;
 
- 	task4->handles[2] = problem->ds_vecq;
 
- 	/* alpha = delta_new / ( trans(d) q )*/
 
- 	struct starpu_task *task5 = create_task(maskiter | 5UL);
 
- 	task5->cl = &cl5;
 
- 	task5->cl_arg = problem;
 
- 	task5->cl_arg_size = sizeof(*problem);
 
- 	task5->handles[0] = problem->ds_vecd;
 
- 	task5->handles[1] = problem->ds_vecq;
 
- 	starpu_tag_declare_deps((starpu_tag_t)(maskiter | 5UL), 1, (starpu_tag_t)(maskiter | 4UL));
 
- 	/* x = x + alpha d */
 
- 	struct starpu_task *task6 = create_task(maskiter | 6UL);
 
- 	task6->cl = &cl6;
 
- 	task6->cl_arg = problem;
 
- 	task6->cl_arg_size = sizeof(*problem);
 
- 	task6->handles[0] = problem->ds_vecx;
 
- 	task6->handles[1] = problem->ds_vecd;
 
- 	starpu_tag_declare_deps((starpu_tag_t)(maskiter | 6UL), 1, (starpu_tag_t)(maskiter | 5UL));
 
- 	/* r = r - alpha q */
 
- 	struct starpu_task *task7 = create_task(maskiter | 7UL);
 
- 	task7->cl = &cl7;
 
- 	task7->cl_arg = problem;
 
- 	task7->cl_arg_size = sizeof(*problem);
 
- 	task7->handles[0] = problem->ds_vecr;
 
- 	task7->handles[1] = problem->ds_vecq;
 
- 	starpu_tag_declare_deps((starpu_tag_t)(maskiter | 7UL), 1, (starpu_tag_t)(maskiter | 6UL));
 
- 	/* update delta_* and compute beta */
 
- 	struct starpu_task *task8 = create_task(maskiter | 8UL);
 
- 	task8->cl = &cl8;
 
- 	task8->cl_arg = problem;
 
- 	task8->cl_arg_size = sizeof(*problem);
 
- 	task8->handles[0] = problem->ds_vecr;
 
- 	starpu_tag_declare_deps((starpu_tag_t)(maskiter | 8UL), 1, (starpu_tag_t)(maskiter | 7UL));
 
- 	/* d = r + beta d */
 
- 	struct starpu_task *task9 = create_task(maskiter | 9UL);
 
- 	task9->cl = &cl9;
 
- 	task9->cl_arg = problem;
 
- 	task9->cl_arg_size = sizeof(*problem);
 
- 	task9->handles[0] = problem->ds_vecd;
 
- 	task9->handles[1] = problem->ds_vecr;
 
- 	starpu_tag_declare_deps((starpu_tag_t)(maskiter | 9UL), 1, (starpu_tag_t)(maskiter | 8UL));
 
- 	task9->callback_func = iteration_cg;
 
- 	task9->callback_arg = problem;
 
- 	/* launch the computation now */
 
- 	ret = starpu_task_submit(task4);
 
- 	STARPU_CHECK_RETURN_VALUE(ret, "starpu_task_submit");
 
- 	ret = starpu_task_submit(task5);
 
- 	STARPU_CHECK_RETURN_VALUE(ret, "starpu_task_submit");
 
- 	ret = starpu_task_submit(task6);
 
- 	STARPU_CHECK_RETURN_VALUE(ret, "starpu_task_submit");
 
- 	ret = starpu_task_submit(task7);
 
- 	STARPU_CHECK_RETURN_VALUE(ret, "starpu_task_submit");
 
- 	ret = starpu_task_submit(task8);
 
- 	STARPU_CHECK_RETURN_VALUE(ret, "starpu_task_submit");
 
- 	ret = starpu_task_submit(task9);
 
- 	STARPU_CHECK_RETURN_VALUE(ret, "starpu_task_submit");
 
- }
 
- void iteration_cg(void *problem)
 
- {
 
- 	struct cg_problem *pb = problem;
 
- 	FPRINTF(stdout, "i : %d (MAX %d)\n\tdelta_new %f (%f)\n", pb->i, MAXITER, pb->delta_new, sqrt(pb->delta_new / pb->size));
 
- 	if ((pb->i < MAXITER) &&
 
- 		(pb->delta_new > pb->epsilon) )
 
- 	{
 
- 		if (pb->i % 1000 == 0)
 
- 			FPRINTF(stdout, "i : %d\n\tdelta_new %f (%f)\n", pb->i, pb->delta_new, sqrt(pb->delta_new / pb->size));
 
- 		pb->i++;
 
- 		/* we did not reach the stop condition yet */
 
- 		launch_new_cg_iteration(problem);
 
- 	}
 
- 	else
 
- 	{
 
- 		/* we may stop */
 
- 		FPRINTF(stdout, "We are done ... after %d iterations \n", pb->i - 1);
 
- 		FPRINTF(stdout, "i : %d\n\tdelta_new %2.5f\n", pb->i, pb->delta_new);
 
- 		sem_post(pb->sem);
 
- 	}
 
- }
 
- /*
 
-  *	initializing the problem
 
-  */
 
- void conjugate_gradient(float *nzvalA, float *vecb, float *vecx, uint32_t nnz,
 
- 			unsigned nrow, uint32_t *colind, uint32_t *rowptr)
 
- {
 
- 	/* first register all the data structures to StarPU */
 
- 	starpu_data_handle_t ds_matrixA;
 
- 	starpu_data_handle_t ds_vecx, ds_vecb;
 
- 	starpu_data_handle_t ds_vecr, ds_vecd, ds_vecq;
 
- 	/* first the user-allocated data */
 
- 	starpu_csr_data_register(&ds_matrixA, STARPU_MAIN_RAM, nnz, nrow,
 
- 			(uintptr_t)nzvalA, colind, rowptr, 0, sizeof(float));
 
- 	starpu_vector_data_register(&ds_vecx, STARPU_MAIN_RAM, (uintptr_t)vecx, nrow, sizeof(float));
 
- 	starpu_vector_data_register(&ds_vecb, STARPU_MAIN_RAM, (uintptr_t)vecb, nrow, sizeof(float));
 
- 	/* then allocate the algorithm intern data */
 
- 	float *ptr_vecr, *ptr_vecd, *ptr_vecq;
 
- 	unsigned i;
 
- 	ptr_vecr = malloc(nrow*sizeof(float));
 
- 	ptr_vecd = malloc(nrow*sizeof(float));
 
- 	ptr_vecq = malloc(nrow*sizeof(float));
 
- 	for (i = 0; i < nrow; i++)
 
- 	{
 
- 		ptr_vecr[i] = 0.0f;
 
- 		ptr_vecd[i] = 0.0f;
 
- 		ptr_vecq[i] = 0.0f;
 
- 	}
 
- 	FPRINTF(stdout, "nrow = %u \n", nrow);
 
- 	/* and register them as well */
 
- 	starpu_vector_data_register(&ds_vecr, STARPU_MAIN_RAM, (uintptr_t)ptr_vecr, nrow, sizeof(float));
 
- 	starpu_vector_data_register(&ds_vecd, STARPU_MAIN_RAM, (uintptr_t)ptr_vecd, nrow, sizeof(float));
 
- 	starpu_vector_data_register(&ds_vecq, STARPU_MAIN_RAM, (uintptr_t)ptr_vecq, nrow, sizeof(float));
 
- 	/* we now have the complete problem */
 
- 	struct cg_problem problem;
 
- 	problem.ds_matrixA = ds_matrixA;
 
- 	problem.ds_vecx    = ds_vecx;
 
- 	problem.ds_vecb    = ds_vecb;
 
- 	problem.ds_vecr    = ds_vecr;
 
- 	problem.ds_vecd    = ds_vecd;
 
- 	problem.ds_vecq    = ds_vecq;
 
- 	problem.epsilon = EPSILON;
 
- 	problem.size = nrow;
 
- 	problem.delta_old = 1.0;
 
- 	problem.delta_new = 1.0; /* just to make sure we do at least one iteration */
 
- 	/* we need a semaphore to synchronize with callbacks */
 
- 	sem_t sem;
 
- 	sem_init(&sem, 0, 0U);
 
- 	problem.sem  = &sem;
 
- 	init_cg(&problem);
 
- 	sem_wait(&sem);
 
- 	sem_destroy(&sem);
 
- 	starpu_task_wait_for_all();
 
- 	print_results(vecx, nrow);
 
- 	starpu_data_unregister(ds_matrixA);
 
- 	starpu_data_unregister(ds_vecx);
 
- 	starpu_data_unregister(ds_vecb);
 
- 	starpu_data_unregister(ds_vecr);
 
- 	starpu_data_unregister(ds_vecd);
 
- 	starpu_data_unregister(ds_vecq);
 
- 	free(ptr_vecr);
 
- 	free(ptr_vecd);
 
- 	free(ptr_vecq);
 
- }
 
- void do_conjugate_gradient(float *nzvalA, float *vecb, float *vecx, uint32_t nnz,
 
- 			unsigned nrow, uint32_t *colind, uint32_t *rowptr)
 
- {
 
- 	/* start the runtime */
 
- 	int ret;
 
- 	ret = starpu_init(NULL);
 
- 	if (ret == -ENODEV)
 
- 		exit(77);
 
- 	STARPU_CHECK_RETURN_VALUE(ret, "starpu_init");
 
- 	starpu_cublas_init();
 
- 	conjugate_gradient(nzvalA, vecb, vecx, nnz, nrow, colind, rowptr);
 
- 	starpu_shutdown();
 
- }
 
 
  |