Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F103584637
element_synchronizer.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
Mon, Mar 3, 04:16
Size
8 KB
Mime Type
text/x-c++
Expires
Wed, Mar 5, 04:16 (1 d, 12 h)
Engine
blob
Format
Raw Data
Handle
24351370
Attached To
rAKA akantu
element_synchronizer.hh
View Options
/**
* Copyright (©) 2010-2023 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* This file is part of Akantu
*
* 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/>.
*/
/* -------------------------------------------------------------------------- */
#ifndef AKANTU_ELEMENT_SYNCHRONIZER_HH_
#define AKANTU_ELEMENT_SYNCHRONIZER_HH_
/* -------------------------------------------------------------------------- */
#include "aka_array.hh"
#include "aka_common.hh"
#include "mesh_partition.hh"
#include "synchronizer.hh"
namespace
akantu
{
class
Mesh
;
}
/* -------------------------------------------------------------------------- */
namespace
akantu
{
class
ElementSynchronizer
:
public
SynchronizerImpl
<
Element
>
,
public
MeshEventHandler
{
/* ------------------------------------------------------------------------ */
/* Constructors/Destructors */
/* ------------------------------------------------------------------------ */
public
:
ElementSynchronizer
(
Mesh
&
mesh
,
const
ID
&
id
=
"element_synchronizer"
,
bool
register_to_event_manager
=
true
,
EventHandlerPriority
event_priority
=
_ehp_synchronizer
);
ElementSynchronizer
(
const
ElementSynchronizer
&
other
,
const
ID
&
id
=
"element_synchronizer_copy"
,
bool
register_to_event_manager
=
true
,
EventHandlerPriority
event_priority
=
_ehp_synchronizer
);
public
:
~
ElementSynchronizer
()
override
;
friend
class
ElementInfoPerProc
;
/* ------------------------------------------------------------------------ */
/* Methods */
/* ------------------------------------------------------------------------ */
public
:
/* ------------------------------------------------------------------------ */
/// mesh event handler onElementsChanged
void
onElementsChanged
(
const
Array
<
Element
>
&
old_elements_list
,
const
Array
<
Element
>
&
new_elements_list
,
const
ElementTypeMapArray
<
Idx
>
&
new_numbering
,
const
ChangedElementsEvent
&
event
)
override
;
/// mesh event handler onRemovedElement
void
onElementsRemoved
(
const
Array
<
Element
>
&
element_list
,
const
ElementTypeMapArray
<
Idx
>
&
new_numbering
,
const
RemovedElementsEvent
&
event
)
override
;
protected
:
/// remove elements from the synchronizer without renumbering them
void
removeElements
(
const
Array
<
Element
>
&
element_to_remove
);
/// renumber the elements in the synchronizer
void
renumberElements
(
const
ElementTypeMapArray
<
Idx
>
&
new_numbering
);
/// build processor to element correspondence
void
buildElementToPrank
();
protected
:
/// fill the nodes type vector
void
fillNodesType
(
const
MeshData
&
mesh_data
,
DynamicCommunicationBuffer
*
buffers
,
const
std
::
string
&
tag_name
,
ElementType
el_type
,
const
Array
<
Idx
>
&
partition_num
);
template
<
typename
T
>
void
fillTagBufferTemplated
(
const
MeshData
&
mesh_data
,
DynamicCommunicationBuffer
*
buffers
,
const
std
::
string
&
tag_name
,
ElementType
el_type
,
const
Array
<
Idx
>
&
partition_num
,
const
CSR
<
Idx
>
&
ghost_partition
);
void
fillTagBuffer
(
const
MeshData
&
mesh_data
,
DynamicCommunicationBuffer
*
buffers
,
const
std
::
string
&
tag_name
,
ElementType
el_type
,
const
Array
<
Idx
>
&
partition_num
,
const
CSR
<
Idx
>
&
ghost_partition
);
/// function that handels the MeshData to be split (root side)
static
void
synchronizeTagsSend
(
ElementSynchronizer
&
communicator
,
Idx
root
,
Mesh
&
mesh
,
Int
nb_tags
,
ElementType
type
,
const
Array
<
Idx
>
&
partition_num
,
const
CSR
<
Idx
>
&
ghost_partition
,
Int
nb_local_element
,
Int
nb_ghost_element
);
/// function that handles the MeshData to be split (other nodes)
static
void
synchronizeTagsRecv
(
ElementSynchronizer
&
communicator
,
Idx
root
,
Mesh
&
mesh
,
Int
nb_tags
,
ElementType
type
,
Int
nb_local_element
,
Int
nb_ghost_element
);
/// function that handles the preexisting groups in the mesh
static
void
synchronizeElementGroups
(
ElementSynchronizer
&
communicator
,
Idx
root
,
Mesh
&
mesh
,
ElementType
type
,
const
Array
<
Idx
>
&
partition_num
,
const
CSR
<
Idx
>
&
ghost_partition
,
Int
nb_element
);
/// function that handles the preexisting groups in the mesh
static
void
synchronizeElementGroups
(
ElementSynchronizer
&
communicator
,
Idx
root
,
Mesh
&
mesh
,
ElementType
type
);
/// function that handles the preexisting groups in the mesh
static
void
synchronizeNodeGroupsMaster
(
ElementSynchronizer
&
communicator
,
Idx
root
,
Mesh
&
mesh
);
/// function that handles the preexisting groups in the mesh
static
void
synchronizeNodeGroupsSlaves
(
ElementSynchronizer
&
communicator
,
Idx
root
,
Mesh
&
mesh
);
template
<
class
CommunicationBuffer
>
static
void
fillNodeGroupsFromBuffer
(
ElementSynchronizer
&
communicator
,
Mesh
&
mesh
,
CommunicationBuffer
&
buffer
);
/// substitute elements in the send and recv arrays
void
substituteElements
(
const
std
::
map
<
Element
,
Element
>
&
old_to_new_elements
);
/* ------------------------------------------------------------------------ */
/* Sanity checks */
/* ------------------------------------------------------------------------ */
Int
sanityCheckDataSize
(
const
Array
<
Element
>
&
elements
,
const
SynchronizationTag
&
tag
,
bool
from_comm_desc
=
true
)
const
override
;
void
packSanityCheckData
(
CommunicationBuffer
&
/*buffer*/
,
const
Array
<
Element
>
&
/*elements*/
,
const
SynchronizationTag
&
/*tag*/
)
const
override
;
void
unpackSanityCheckData
(
CommunicationBuffer
&
/*buffer*/
,
const
Array
<
Element
>
&
/*elements*/
,
const
SynchronizationTag
&
/*tag*/
,
Idx
/*proc*/
,
Idx
/*rank*/
)
const
override
;
/* ------------------------------------------------------------------------ */
/* Accessors */
/* ------------------------------------------------------------------------ */
public
:
AKANTU_GET_MACRO_AUTO
(
Mesh
,
mesh
);
AKANTU_GET_MACRO_AUTO
(
ElementToRank
,
element_to_prank
);
Int
getRank
(
const
Element
&
element
)
const
final
;
/* ------------------------------------------------------------------------ */
/* Class Members */
/* ------------------------------------------------------------------------ */
protected
:
/// reference to the underlying mesh
Mesh
&
mesh
;
friend
class
FacetSynchronizer
;
ElementTypeMapArray
<
Int
>
element_to_prank
;
};
/* -------------------------------------------------------------------------- */
}
// namespace akantu
#endif
/* AKANTU_ELEMENT_SYNCHRONIZER_HH_ */
Event Timeline
Log In to Comment