Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90710782
synchronizer_tmpl.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, Nov 4, 02:00
Size
5 KB
Mime Type
text/x-c++
Expires
Wed, Nov 6, 02:00 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
21550837
Attached To
rAKA akantu
synchronizer_tmpl.hh
View Options
/**
* @file synchronizer_tmpl.hh
*
* @author Nicolas Richart <nicolas.richart@epfl.ch>
*
* @date creation: Wed Sep 07 2016
* @date last modification: Thu May 11 2017
*
* @brief Implementation of the helper classes for the synchronizer
*
*
* Copyright (©) 2016-2018 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/>.
*
*/
/* -------------------------------------------------------------------------- */
#include "aka_array.hh"
#include "data_accessor.hh"
#include "synchronizer.hh"
#include "synchronizer_impl.hh"
/* -------------------------------------------------------------------------- */
#ifndef AKANTU_SYNCHRONIZER_TMPL_HH_
#define AKANTU_SYNCHRONIZER_TMPL_HH_
namespace
akantu
{
template
<
class
DataAccessorT
>
void
Synchronizer
::
slaveReductionOnce
(
DataAccessorT
&
data_accessor
,
const
SynchronizationTag
&
tag
)
const
{
if
(
const
auto
*
synch_el
=
dynamic_cast
<
const
SynchronizerImpl
<
Element
>
*>
(
this
))
{
synch_el
->
slaveReductionOnceImpl
(
dynamic_cast
<
DataAccessor
<
Element
>
&>
(
data_accessor
),
tag
);
}
else
if
(
const
auto
*
synch_dof
=
dynamic_cast
<
const
SynchronizerImpl
<
UInt
>
*>
(
this
))
{
synch_dof
->
slaveReductionOnceImpl
(
dynamic_cast
<
DataAccessor
<
UInt
>
&>
(
data_accessor
),
tag
);
}
else
{
AKANTU_EXCEPTION
(
"You synchronizer is not of a known type"
);
}
}
template
<
class
DataAccessorT
>
void
Synchronizer
::
synchronizeOnce
(
DataAccessorT
&
data_accessor
,
const
SynchronizationTag
&
tag
)
const
{
if
(
const
auto
*
synch_el
=
dynamic_cast
<
const
SynchronizerImpl
<
Element
>
*>
(
this
))
{
synch_el
->
synchronizeOnceImpl
(
dynamic_cast
<
DataAccessor
<
Element
>
&>
(
data_accessor
),
tag
);
}
else
if
(
const
auto
*
synch_dof
=
dynamic_cast
<
const
SynchronizerImpl
<
UInt
>
*>
(
this
))
{
synch_dof
->
synchronizeOnceImpl
(
dynamic_cast
<
DataAccessor
<
UInt
>
&>
(
data_accessor
),
tag
);
}
else
{
AKANTU_EXCEPTION
(
"You synchronizer is not of a known type"
);
}
}
/// synchronize ghosts
template
<
class
DataAccessorT
>
void
Synchronizer
::
synchronize
(
DataAccessorT
&
data_accessor
,
const
SynchronizationTag
&
tag
)
{
if
(
auto
*
synch_el
=
dynamic_cast
<
SynchronizerImpl
<
Element
>
*>
(
this
))
{
synch_el
->
synchronizeImpl
(
dynamic_cast
<
DataAccessor
<
Element
>
&>
(
data_accessor
),
tag
);
}
else
if
(
auto
*
synch_dof
=
dynamic_cast
<
SynchronizerImpl
<
UInt
>
*>
(
this
))
{
synch_dof
->
synchronizeImpl
(
dynamic_cast
<
DataAccessor
<
UInt
>
&>
(
data_accessor
),
tag
);
}
else
{
AKANTU_EXCEPTION
(
"You synchronizer is not of a known type"
);
}
}
/* -------------------------------------------------------------------------- */
template
<
class
DataAccessorT
>
void
Synchronizer
::
asynchronousSynchronize
(
const
DataAccessorT
&
data_accessor
,
const
SynchronizationTag
&
tag
)
{
if
(
auto
*
synch_el
=
dynamic_cast
<
SynchronizerImpl
<
Element
>
*>
(
this
))
{
synch_el
->
asynchronousSynchronizeImpl
(
dynamic_cast
<
const
DataAccessor
<
Element
>
&>
(
data_accessor
),
tag
);
}
else
if
(
auto
*
synch_dof
=
dynamic_cast
<
SynchronizerImpl
<
UInt
>
*>
(
this
))
{
synch_dof
->
asynchronousSynchronizeImpl
(
dynamic_cast
<
const
DataAccessor
<
UInt
>
&>
(
data_accessor
),
tag
);
}
else
{
AKANTU_EXCEPTION
(
"You synchronizer is not of a known type"
);
}
}
/* -------------------------------------------------------------------------- */
template
<
class
DataAccessorT
>
void
Synchronizer
::
waitEndSynchronize
(
DataAccessorT
&
data_accessor
,
const
SynchronizationTag
&
tag
)
{
if
(
auto
*
synch_el
=
dynamic_cast
<
SynchronizerImpl
<
Element
>
*>
(
this
))
{
synch_el
->
waitEndSynchronizeImpl
(
dynamic_cast
<
DataAccessor
<
Element
>
&>
(
data_accessor
),
tag
);
}
else
if
(
auto
*
synch_dof
=
dynamic_cast
<
SynchronizerImpl
<
UInt
>
*>
(
this
))
{
synch_dof
->
waitEndSynchronizeImpl
(
dynamic_cast
<
DataAccessor
<
UInt
>
&>
(
data_accessor
),
tag
);
}
else
{
AKANTU_EXCEPTION
(
"You synchronizer is not of a known type"
);
}
}
/// compute buffer size for a given tag and data accessor
template
<
class
DataAccessorT
>
void
Synchronizer
::
computeBufferSize
(
const
DataAccessorT
&
data_accessor
,
const
SynchronizationTag
&
tag
)
{
if
(
auto
*
synch_el
=
dynamic_cast
<
SynchronizerImpl
<
Element
>
*>
(
this
))
{
synch_el
->
computeBufferSizeImpl
(
dynamic_cast
<
const
DataAccessor
<
Element
>
&>
(
data_accessor
),
tag
);
}
else
if
(
auto
*
synch_dof
=
dynamic_cast
<
SynchronizerImpl
<
UInt
>
*>
(
this
))
{
synch_dof
->
computeBufferSizeImpl
(
dynamic_cast
<
const
DataAccessor
<
UInt
>
&>
(
data_accessor
),
tag
);
}
else
{
AKANTU_EXCEPTION
(
"You synchronizer is not of a known type"
);
}
}
}
// namespace akantu
#endif
/* AKANTU_SYNCHRONIZER_TMPL_HH_ */
Event Timeline
Log In to Comment