123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347 |
- /*
- * -- High Performance Computing Linpack Benchmark (HPL)
- * HPL - 2.0 - September 10, 2008
- * Antoine P. Petitet
- * University of Tennessee, Knoxville
- * Innovative Computing Laboratory
- * (C) Copyright 2000-2008 All Rights Reserved
- *
- * -- Copyright notice and Licensing terms:
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions, and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- *
- * 3. All advertising materials mentioning features or use of this
- * software must display the following acknowledgement:
- * This product includes software developed at the University of
- * Tennessee, Knoxville, Innovative Computing Laboratory.
- *
- * 4. The name of the University, the name of the Laboratory, or the
- * names of its contributors may not be used to endorse or promote
- * products derived from this software without specific written
- * permission.
- *
- * -- Disclaimer:
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE UNIVERSITY
- * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- #ifndef HPL_PGESV_H
- #define HPL_PGESV_H
- /*
- * ---------------------------------------------------------------------
- * Include files
- * ---------------------------------------------------------------------
- */
- #include "hpl_misc.h"
- #include "hpl_blas.h"
- #include "hpl_auxil.h"
- #include "hpl_pmisc.h"
- #include "hpl_grid.h"
- #include "hpl_comm.h"
- #include "hpl_pauxil.h"
- #include "hpl_panel.h"
- #include "hpl_pfact.h"
- /*
- * ---------------------------------------------------------------------
- * #typedefs and data structures
- * ---------------------------------------------------------------------
- */
- typedef enum
- {
- HPL_SWAP00 = 451, /* Use HPL_pdlaswp00 */
- HPL_SWAP01 = 452, /* Use HPL_pdlaswp01 */
- HPL_SW_MIX = 453, /* Use HPL_pdlaswp00_ for small number of */
- /* columns, and HPL_pdlaswp01_ otherwise. */
- HPL_NO_SWP = 499
- } HPL_T_SWAP;
- typedef struct HPL_S_palg
- {
- HPL_T_TOP btopo; /* row broadcast topology */
- int depth; /* look-ahead depth */
- int nbdiv; /* recursive division factor */
- int nbmin; /* recursion stopping criterium */
- HPL_T_FACT pfact; /* panel fact variant */
- HPL_T_FACT rfact; /* recursive fact variant */
- HPL_T_PFA_FUN pffun; /* panel fact function ptr */
- HPL_T_RFA_FUN rffun; /* recursive fact function ptr */
- HPL_T_UPD_FUN upfun; /* update function */
- HPL_T_SWAP fswap; /* Swapping algorithm */
- int fsthr; /* Swapping threshold */
- int equil; /* Equilibration */
- int align; /* data alignment constant */
- } HPL_T_palg;
- typedef struct HPL_S_pmat
- {
- #ifdef HPL_CALL_VSIPL
- vsip_block_d * block;
- #endif
- double * A; /* pointer to local piece of A */
- double * X; /* pointer to solution vector */
- int n; /* global problem size */
- int nb; /* blocking factor */
- int ld; /* local leading dimension */
- int mp; /* local number of rows */
- int nq; /* local number of columns */
- int info; /* computational flag */
- } HPL_T_pmat;
- /*
- * ---------------------------------------------------------------------
- * #define macro constants
- * ---------------------------------------------------------------------
- */
- #define MSGID_BEGIN_PFACT 1001 /* message id ranges */
- #define MSGID_END_PFACT 2000
- #define MSGID_BEGIN_FACT 2001
- #define MSGID_END_FACT 3000
- #define MSGID_BEGIN_PTRSV 3001
- #define MSGID_END_PTRSV 4000
-
- #define MSGID_BEGIN_COLL 9001
- #define MSGID_END_COLL 10000
- /*
- * ---------------------------------------------------------------------
- * #define macros definitions
- * ---------------------------------------------------------------------
- */
- #define MNxtMgid( id_, beg_, end_ ) \
- (( (id_)+1 > (end_) ? (beg_) : (id_)+1 ))
- /*
- * ---------------------------------------------------------------------
- * Function prototypes
- * ---------------------------------------------------------------------
- */
- void HPL_pipid
- STDC_ARGS( (
- HPL_T_panel *,
- int *,
- int *
- ) );
- void HPL_plindx0
- STDC_ARGS( (
- HPL_T_panel *,
- const int,
- int *,
- int *,
- int *,
- int *
- ) );
- void HPL_pdlaswp00N
- STDC_ARGS( (
- HPL_T_panel *,
- int *,
- HPL_T_panel *,
- const int
- ) );
- void HPL_pdlaswp00T
- STDC_ARGS( (
- HPL_T_panel *,
- int *,
- HPL_T_panel *,
- const int
- ) );
- void HPL_perm
- STDC_ARGS( (
- const int,
- int *,
- int *,
- int *
- ) );
- void HPL_logsort
- STDC_ARGS( (
- const int,
- const int,
- int *,
- int *,
- int *
- ) );
- void HPL_plindx10
- STDC_ARGS( (
- HPL_T_panel *,
- const int,
- const int *,
- int *,
- int *,
- int *
- ) );
- void HPL_plindx1
- STDC_ARGS( (
- HPL_T_panel *,
- const int,
- const int *,
- int *,
- int *,
- int *,
- int *,
- int *,
- int *,
- int *,
- int *
- ) );
- void HPL_spreadN
- STDC_ARGS( (
- HPL_T_panel *,
- int *,
- HPL_T_panel *,
- const enum HPL_SIDE,
- const int,
- double *,
- const int,
- const int,
- const int *,
- const int *,
- const int *
- ) );
- void HPL_spreadT
- STDC_ARGS( (
- HPL_T_panel *,
- int *,
- HPL_T_panel *,
- const enum HPL_SIDE,
- const int,
- double *,
- const int,
- const int,
- const int *,
- const int *,
- const int *
- ) );
- void HPL_equil
- STDC_ARGS( (
- HPL_T_panel *,
- int *,
- HPL_T_panel *,
- const enum HPL_TRANS,
- const int,
- double *,
- const int,
- int *,
- const int *,
- const int *,
- int *
- ) );
- void HPL_rollN
- STDC_ARGS( (
- HPL_T_panel *,
- int *,
- HPL_T_panel *,
- const int,
- double *,
- const int,
- const int *,
- const int *,
- const int *
- ) );
- void HPL_rollT
- STDC_ARGS( (
- HPL_T_panel *,
- int *,
- HPL_T_panel *,
- const int,
- double *,
- const int,
- const int *,
- const int *,
- const int *
- ) );
- void HPL_pdlaswp01N
- STDC_ARGS( (
- HPL_T_panel *,
- int *,
- HPL_T_panel *,
- const int
- ) );
- void HPL_pdlaswp01T
- STDC_ARGS( (
- HPL_T_panel *,
- int *,
- HPL_T_panel *,
- const int
- ) );
- void HPL_pdupdateNN
- STDC_ARGS( (
- HPL_T_panel *,
- int *,
- HPL_T_panel *,
- const int
- ) );
- void HPL_pdupdateNT
- STDC_ARGS( (
- HPL_T_panel *,
- int *,
- HPL_T_panel *,
- const int
- ) );
- void HPL_pdupdateTN
- STDC_ARGS( (
- HPL_T_panel *,
- int *,
- HPL_T_panel *,
- const int
- ) );
- void HPL_pdupdateTT
- STDC_ARGS( (
- HPL_T_panel *,
- int *,
- HPL_T_panel *,
- const int
- ) );
- void HPL_pdgesv0
- STDC_ARGS( (
- HPL_T_grid *,
- HPL_T_palg *,
- HPL_T_pmat *
- ) );
- void HPL_pdgesvK1
- STDC_ARGS( (
- HPL_T_grid *,
- HPL_T_palg *,
- HPL_T_pmat *
- ) );
- void HPL_pdgesvK2
- STDC_ARGS( (
- HPL_T_grid *,
- HPL_T_palg *,
- HPL_T_pmat *
- ) );
- void HPL_pdgesv
- STDC_ARGS( (
- HPL_T_grid *,
- HPL_T_palg *,
- HPL_T_pmat *
- ) );
-
- void HPL_pdtrsv
- STDC_ARGS( (
- HPL_T_grid *,
- HPL_T_pmat *
- ) );
- #endif
- /*
- * End of hpl_pgesv.h
- */
|