libmesh_base.h
Go to the documentation of this file.
1 // The libMesh Finite Element Library.
2 // Copyright (C) 2002-2018 Benjamin S. Kirk, John W. Peterson, Roy H. Stogner
3 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License, or (at your option) any later version.
8 
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 // Lesser General Public License for more details.
13 
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 
18 
19 
20 #ifndef LIBMESH_LIBMESH_BASE_H
21 #define LIBMESH_LIBMESH_BASE_H
22 
23 #include "libmesh/id_types.h"
24 
25 namespace libMesh {
26 
31 
37 
41 unsigned int n_threads();
42 
50 namespace libMeshPrivateData {
51 #ifdef LIBMESH_HAVE_MPI
52 
56 
61 #endif
62 
66 extern int _n_threads;
67 }
68 }
69 
70 
71 
72 // ------------------------------------------------------------
73 // libMesh inline member functions
74 inline
76 {
77 #ifdef LIBMESH_HAVE_MPI
79 #else
80  return 1;
81 #endif
82 }
83 
84 inline
86 {
87 #ifdef LIBMESH_HAVE_MPI
89 #else
90  return 0;
91 #endif
92 }
93 
94 
95 inline
96 unsigned int libMesh::n_threads()
97 {
98  return static_cast<unsigned int>(libMeshPrivateData::_n_threads);
99 }
100 
101 
102 // We now put everything we can into a separate libMesh namespace;
103 // code which forward declares libMesh classes or which specializes
104 // libMesh templates may want to know whether it is compiling under
105 // such conditions, to be backward compatible with older libMesh
106 // versions:
107 #define LIBMESH_USE_SEPARATE_NAMESPACE 1
108 
109 
110 // Unless configured otherwise, we import all of namespace libMesh,
111 // for backwards compatibility with pre-namespaced codes.
112 
113 #ifndef LIBMESH_REQUIRE_SEPARATE_NAMESPACE
114 using namespace libMesh;
115 #endif
116 
117 
118 #endif // LIBMESH_LIBMESH_BASE_H
unsigned int n_threads()
Definition: libmesh_base.h:96
processor_id_type global_n_processors()
Definition: libmesh_base.h:75
processor_id_type _n_processors
Definition: libmesh.C:235
uint8_t processor_id_type
Definition: id_types.h:99
processor_id_type _processor_id
Definition: libmesh.C:236
processor_id_type global_processor_id()
Definition: libmesh_base.h:85