00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef __SUPERLU_MACHINES
00013 #define __SUPERLU_MACHINES
00014
00015 #define PTHREAD 0
00016 #define OPENMP 1
00017 #define SGI 2
00018 #define ORIGIN 3
00019 #define DEC 4
00020 #define CRAY_PVP 5
00021 #define SUN 6
00022
00023 #ifdef __PTHREAD
00024 #define MACH PTHREAD
00025 #endif
00026
00027 #ifdef __OPENMP
00028 #define MACH OPENMP
00029 #endif
00030
00031 #ifdef __SOLARIS
00032 #define MACH SUN
00033 #endif
00034
00035 #ifdef __SGI
00036 #define MACH SGI
00037 #endif
00038
00039 #ifdef __ORIGIN
00040 #define MACH ORIGIN
00041 #endif
00042
00043 #ifdef __DEC
00044 #define MACH DEC
00045 #endif
00046
00047 #ifdef __CRAY
00048 #define MACH CRAY_PVP
00049 #endif
00050
00057 #define MACH OPENMP
00058
00059
00060 #endif