/usr/include/trilinos/ml_aztec_lapack.h is in libtrilinos-ml-dev 12.10.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | /********************************************************************* */
/* See the file COPYRIGHT for a complete copyright notice, contact */
/* person and disclaimer. */
/* ******************************************************************** */
/********************************************************************* */
/* BLAS/LAPACK Utilities for Aztec/ML users */
/********************************************************************* */
#ifndef __MLAZTECLAPACK__
#define __MLAZTECLAPACK__
#ifdef AZTEC
#include "ml_common.h"
#include "ml_defs.h"
#define ML_IDAMAX_FUNC
#define ML_DSWAP_FUNC
#define ML_DSCAL_FUNC
#define ML_DAXPY_FUNC
#define ML_DASUM_FUNC
#define ML_DDOT_FUNC
#define ML_DNRM2_FUNC
#define ML_DCOPY_FUNC
#define ML_DGEMM_FUNC
#define ML_DTRSM_FUNC
#define ML_DTRMM_FUNC
#define ML_DGETRS_FUNC
#define ML_LSAME_FUNC
#define ML_XERBLA_FUNC
#define ML_DLASWP_FUNC
#define ML_DGEMV_FUNC
#define ML_DGETRF_FUNC
#define ML_DGER_FUNC
#define ML_DTRMV_FUNC
#define ML_DTRSV_FUNC
#ifndef FSUB_TYPE
# if defined(ncube)
# define FSUB_TYPE void
# elif defined(paragon)
# define FSUB_TYPE void
# elif defined(hp)
# define FSUB_TYPE void
# else
# define FSUB_TYPE int
# endif
#endif
#endif
#endif
|