115 lines
3.6 KiB
C
115 lines
3.6 KiB
C
/*BHEADER**********************************************************************
|
|
* Copyright (c) 2006 The Regents of the University of California.
|
|
* Produced at the Lawrence Livermore National Laboratory.
|
|
* Written by the HYPRE team, UCRL-CODE-222953.
|
|
* All rights reserved.
|
|
*
|
|
* This file is part of HYPRE (see http://www.llnl.gov/CASC/hypre/).
|
|
* Please see the COPYRIGHT_and_LICENSE file for the copyright notice,
|
|
* disclaimer and the GNU Lesser General Public License.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License (as published by the Free
|
|
* Software Foundation) version 2.1 dated February 1999.
|
|
*
|
|
* This program 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 terms and conditions of the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*
|
|
* $Revision$
|
|
***********************************************************************EHEADER*/
|
|
|
|
|
|
/******************************************************************************
|
|
*
|
|
* Fortran <-> C interface macros
|
|
*
|
|
*****************************************************************************/
|
|
|
|
#ifndef HYPRE_FORT_HEADER
|
|
#define HYPRE_FORT_HEADER
|
|
|
|
#include "HYPRE_config.h"
|
|
|
|
#ifdef WIN32
|
|
#include "mkl.h"
|
|
#endif
|
|
|
|
#if defined(F77_FUNC_)
|
|
/* F77_FUNC_ macro assumes underscores exist in name */
|
|
# define hypre_NAME_C_CALLING_FORT(name,NAME) F77_FUNC_(name,NAME)
|
|
# define hypre_NAME_FORT_CALLING_C(name,NAME) F77_FUNC_(name,NAME)
|
|
|
|
#elif defined(HYPRE_RS6000)
|
|
|
|
# define hypre_NAME_C_CALLING_FORT(name,NAME) name
|
|
# define hypre_NAME_FORT_CALLING_C(name,NAME) name
|
|
|
|
#elif defined(HYPRE_CRAY)
|
|
|
|
# define hypre_NAME_C_CALLING_FORT(name,NAME) NAME
|
|
# define hypre_NAME_FORT_CALLING_C(name,NAME) NAME
|
|
|
|
#elif defined(HYPRE_LINUX)
|
|
|
|
# define hypre_NAME_C_CALLING_FORT(name,NAME) name##__
|
|
# define hypre_NAME_FORT_CALLING_C(name,NAME) name##__
|
|
|
|
#elif defined(HYPRE_LINUX_CHAOS)
|
|
|
|
# define hypre_NAME_C_CALLING_FORT(name,NAME) name##_
|
|
# define hypre_NAME_FORT_CALLING_C(name,NAME) name##_
|
|
|
|
#elif defined(HYPRE_HPPA)
|
|
|
|
# define hypre_NAME_C_CALLING_FORT(name,NAME) name
|
|
# define hypre_NAME_FORT_CALLING_C(name,NAME) name
|
|
|
|
#elif defined(WIN32)
|
|
# define hypre_NAME_C_CALLING_FORT(name,NAME) NAME
|
|
# define hypre_NAME_FORT_CALLING_C(name,NAME) NAME
|
|
|
|
#else
|
|
|
|
# define hypre_NAME_C_CALLING_FORT(name,NAME) name##_
|
|
# define hypre_NAME_FORT_CALLING_C(name,NAME) name##_
|
|
|
|
#endif
|
|
|
|
#define hypre_F90_IFACE(name,NAME) hypre_NAME_FORT_CALLING_C(name,NAME)
|
|
#define hypre_F90_NAME(name,NAME) hypre_NAME_C_CALLING_FORT(name,NAME)
|
|
|
|
#ifdef WIN32
|
|
#define hypre_F90_NAME_BLAS(name,NAME) NAME
|
|
#else
|
|
|
|
#ifdef HYPRE_USING_HYPRE_BLAS
|
|
#define hypre_F90_NAME_BLAS(name,NAME) hypre_##name
|
|
#else
|
|
#if defined(F77_FUNC)
|
|
/* F77_FUNC macro assumes NO underscores exist in name */
|
|
#define hypre_F90_NAME_BLAS(name,NAME) F77_FUNC(name,NAME)
|
|
#else
|
|
#define hypre_F90_NAME_BLAS(name,NAME) hypre_NAME_C_CALLING_FORT(name,NAME)
|
|
#endif
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef HYPRE_USING_HYPRE_LAPACK
|
|
#define hypre_F90_NAME_LAPACK(name,NAME) hypre_##name
|
|
#else
|
|
#if defined(F77_FUNC)
|
|
/* F77_FUNC macro assumes NO underscores exist in name */
|
|
#define hypre_F90_NAME_LAPACK(name,NAME) F77_FUNC(name,NAME)
|
|
#else
|
|
#define hypre_F90_NAME_LAPACK(name,NAME) hypre_NAME_C_CALLING_FORT(name,NAME)
|
|
#endif
|
|
#endif
|
|
|
|
#endif
|