12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2010, 2014 Université de Bordeaux
- * Copyright (C) 2010, 2012, 2014, 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.
- */
- #ifndef __PXLU_H__
- #define __PXLU_H__
- #include <starpu.h>
- #include <common/blas.h>
- #include <starpu_mpi.h>
- #ifdef STARPU_USE_CUDA
- #include <cublas.h>
- #endif
- #define BLAS3_FLOP(n1,n2,n3) \
- (2*((uint64_t)n1)*((uint64_t)n2)*((uint64_t)n3))
- //#define SINGLE_TMP11 1
- //#define SINGLE_TMP1221 1
- struct debug_info
- {
- unsigned i;
- unsigned j;
- unsigned k;
- };
- double STARPU_PLU(plu_main)(unsigned nblocks, int rank, int world_size);
- TYPE *STARPU_PLU(reconstruct_matrix)(unsigned size, unsigned nblocks);
- void STARPU_PLU(compute_lu_matrix)(unsigned size, unsigned nblocks, TYPE *Asaved);
- unsigned STARPU_PLU(display_flag)(void);
- void STARPU_PLU(compute_ax)(unsigned size, TYPE *x, TYPE *y, unsigned nblocks, int rank);
- void STARPU_PLU(compute_lux)(unsigned size, TYPE *x, TYPE *y, unsigned nblocks, int rank);
- starpu_data_handle_t STARPU_PLU(get_block_handle)(unsigned i, unsigned j);
- TYPE *STARPU_PLU(get_block)(unsigned i, unsigned j);
- #ifdef SINGLE_TMP11
- starpu_data_handle_t STARPU_PLU(get_tmp_11_block_handle)(void);
- #else
- starpu_data_handle_t STARPU_PLU(get_tmp_11_block_handle)(unsigned k);
- #endif
- #ifdef SINGLE_TMP1221
- starpu_data_handle_t STARPU_PLU(get_tmp_12_block_handle)(unsigned j);
- starpu_data_handle_t STARPU_PLU(get_tmp_21_block_handle)(unsigned i);
- #else
- starpu_data_handle_t STARPU_PLU(get_tmp_12_block_handle)(unsigned j, unsigned k);
- starpu_data_handle_t STARPU_PLU(get_tmp_21_block_handle)(unsigned i, unsigned k);
- #endif
- void STARPU_PLU(display_data_content)(TYPE *data, unsigned blocksize);
- int get_block_rank(unsigned i, unsigned j);
- #endif // __PXLU_H__
|