/usr/include/trilinos/Phalanx_config.hpp is in libtrilinos-phalanx-dev 12.4.2-2.
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 | #ifndef PHALANX_CONFIG_HPP
#define PHALANX_CONFIG_HPP
#define HAVE_MPI
/* #undef PHX_DEBUG */
#define PHX_TEUCHOS_TIME_MONITOR
/* #undef PHX_ETI */
#define PHX_KOKKOS_DEVICE_TYPE_SERIAL
/* #undef PHX_KOKKOS_DEVICE_TYPE_CUDA */
/* #undef PHX_KOKKOS_DEVICE_TYPE_THREAD */
/* #undef PHX_KOKKOS_DEVICE_TYPE_OPENMP */
/* #undef PHX_INDEX_SIZE_TYPE_KOKKOS */
/* #undef PHX_INDEX_SIZE_TYPE_INT */
#define PHX_INDEX_SIZE_TYPE_UINT
/* #undef PHX_INDEX_SIZE_TYPE_LONGINT */
/* #undef PHX_INDEX_SIZE_TYPE_ULONGINT */
/* #undef HAVE_PHALANX_TVMET */
#define Phalanx_ENABLE_Intrepid
#ifndef PHALANX_DEPRECATED
# if (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1))
# define PHALANX_DEPRECATED __attribute__((__deprecated__))
# else
# define PHALANX_DEPRECATED
# endif
#endif
#ifndef PHALANX_DEPRECATED_MSG
# if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5))
# define PHALANX_DEPRECATED_MSG(MSG) __attribute__((__deprecated__ (#MSG) ))
# elif (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1))
# define PHALANX_DEPRECATED_MSG(MSG) __attribute__((__deprecated__))
# else
# define PHALANX_DEPRECATED_MSG(MSG)
# endif
#endif
#endif
|