OpenMPI  0.1.1
architecture.h
1 /*
2  * Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
3  * University Research and Technology
4  * Corporation. All rights reserved.
5  * Copyright (c) 2004-2005 The University of Tennessee and The University
6  * of Tennessee Research Foundation. All rights
7  * reserved.
8  * Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
9  * University of Stuttgart. All rights reserved.
10  * Copyright (c) 2004-2005 The Regents of the University of California.
11  * All rights reserved.
12  * Copyright (c) 2011 Sandia National Laboratories. All rights reserved.
13  * $COPYRIGHT$
14  *
15  * Additional copyrights may follow
16  *
17  * $HEADER$
18  */
19 
20 /*
21  * List of supported architectures
22  */
23 
24 #ifndef OPAL_SYS_ARCHITECTURE_H
25 #define OPAL_SYS_ARCHITECTURE_H
26 
27 /* Architectures */
28 #define OMPI_UNSUPPORTED 0000
29 #define OMPI_WINDOWS 0001
30 #define OMPI_IA32 0010
31 #define OMPI_IA64 0020
32 #define OMPI_AMD64 0030
33 #define OMPI_ALPHA 0040
34 #define OMPI_POWERPC32 0050
35 #define OMPI_POWERPC64 0051
36 #define OMPI_SPARC 0060
37 #define OMPI_SPARCV9_32 0061
38 #define OMPI_SPARCV9_64 0062
39 #define OMPI_MIPS 0070
40 #define OMPI_ARM 0100
41 #define OMPI_SYNC_BUILTIN 0200
42 
43 /* Formats */
44 #define OMPI_DEFAULT 1000 /* standard for given architecture */
45 #define OMPI_DARWIN 1001 /* Darwin / OS X on PowerPC */
46 #define OMPI_PPC_LINUX 1002 /* Linux on PowerPC */
47 #define OMPI_AIX 1003 /* AIX on Power / PowerPC */
48 
49 #endif /* #ifndef OPAL_SYS_ARCHITECTURE_H */