Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91853238
mpi_communicator_data.hh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 15, 04:04
Size
4 KB
Mime Type
text/x-c++
Expires
Sun, Nov 17, 04:04 (2 d)
Engine
blob
Format
Raw Data
Handle
22336844
Attached To
rAKA akantu
mpi_communicator_data.hh
View Options
/**
* @file mpi_type_wrapper.hh
*
* @author Nicolas Richart <nicolas.richart@epfl.ch>
*
* @date creation: Mon Jun 14 2010
* @date last modification: Wed Oct 07 2015
*
* @brief Wrapper on MPI types to have a better separation between libraries
*
* @section LICENSE
*
* Copyright (©) 2010-2012, 2014, 2015 EPFL (Ecole Polytechnique Fédérale de
* Lausanne) Laboratory (LSMS - Laboratoire de Simulation en Mécanique des
* Solides)
*
* Akantu is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* Akantu 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 GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Akantu. If not, see <http://www.gnu.org/licenses/>.
*
*/
/* -------------------------------------------------------------------------- */
#if defined(__INTEL_COMPILER)
//#pragma warning ( disable : 383 )
#elif defined(__clang__)
// test clang to be sure that when we test for gnu it
// is only gnu
#elif (defined(__GNUC__) || defined(__GNUG__))
#if __cplusplus > 199711L
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wliteral-suffix"
#endif
#endif
#include <mpi.h>
#if defined(__INTEL_COMPILER)
//#pragma warning ( disable : 383 )
#elif defined(__clang__)
// test clang to be sure that when we test for gnu it
// is only gnu
#elif (defined(__GNUC__) || defined(__GNUG__))
#if __cplusplus > 199711L
#pragma GCC diagnostic pop
#endif
#endif
/* -------------------------------------------------------------------------- */
#include "communicator.hh"
/* -------------------------------------------------------------------------- */
#include <unordered_map>
/* -------------------------------------------------------------------------- */
#ifndef __AKANTU_MPI_TYPE_WRAPPER_HH__
#define __AKANTU_MPI_TYPE_WRAPPER_HH__
namespace
akantu
{
class
MPICommunicatorData
:
public
CommunicatorInternalData
{
public
:
MPICommunicatorData
()
{
int
is_initialized
=
false
;
MPI_Initialized
(
&
is_initialized
);
if
(
!
is_initialized
)
{
MPI_Init
(
NULL
,
NULL
);
// valid according to the spec
}
MPI_Comm_create_errhandler
(
MPICommunicatorData
::
errorHandler
,
&
error_handler
);
setMPICommunicator
(
MPI_COMM_WORLD
);
is_externaly_initialized
=
is_initialized
;
}
~
MPICommunicatorData
()
{
if
(
not
is_externaly_initialized
)
{
MPI_Finalize
();
}
}
inline
void
setMPICommunicator
(
MPI_Comm
comm
)
{
MPI_Comm_set_errhandler
(
communicator
,
save_error_handler
);
communicator
=
comm
;
MPI_Comm_get_errhandler
(
comm
,
&
save_error_handler
);
MPI_Comm_set_errhandler
(
comm
,
error_handler
);
}
inline
int
rank
()
const
{
int
prank
;
MPI_Comm_rank
(
communicator
,
&
prank
);
return
prank
;
}
inline
int
size
()
const
{
int
psize
;
MPI_Comm_size
(
communicator
,
&
psize
);
return
psize
;
}
inline
MPI_Comm
getMPICommunicator
()
const
{
return
communicator
;
}
inline
int
getMaxTag
()
const
{
int
flag
;
int
*
value
;
MPI_Comm_get_attr
(
communicator
,
MPI_TAG_UB
,
&
value
,
&
flag
);
AKANTU_DEBUG_ASSERT
(
flag
,
"No attribute MPI_TAG_UB."
);
return
*
value
;
}
private
:
MPI_Comm
communicator
{
MPI_COMM_WORLD
};
MPI_Errhandler
save_error_handler
{
MPI_ERRORS_ARE_FATAL
};
bool
is_externaly_initialized
{
false
};
/* ------------------------------------------------------------------------ */
MPI_Errhandler
error_handler
;
static
void
errorHandler
(
MPI_Comm
*
/*comm*/
,
int
*
error_code
,
...)
{
char
error_string
[
MPI_MAX_ERROR_STRING
];
int
str_len
;
MPI_Error_string
(
*
error_code
,
error_string
,
&
str_len
);
AKANTU_CUSTOM_EXCEPTION_INFO
(
debug
::
CommunicationException
(),
"MPI failed with the error code "
<<
*
error_code
<<
":
\"
"
<<
error_string
<<
"
\"
"
);
}
};
}
// namespace akantu
#endif
/* __AKANTU_MPI_TYPE_WRAPPER_HH__ */
Event Timeline
Log In to Comment