Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90428051
tamaas_module.cpp
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 1, 13:59
Size
2 KB
Mime Type
text/x-c++
Expires
Sun, Nov 3, 13:59 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
21940655
Attached To
rTAMAAS tamaas
tamaas_module.cpp
View Options
/**
* @file
* @section LICENSE
*
* Copyright (©) 2016-2020 EPFL (École Polytechnique Fédérale de Lausanne),
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
/* -------------------------------------------------------------------------- */
#include "tamaas.hh"
#include "tamaas_info.hh"
#include "wrap.hh"
/* -------------------------------------------------------------------------- */
#include <pybind11/pybind11.h>
/* -------------------------------------------------------------------------- */
namespace
tamaas
{
namespace
py
=
pybind11
;
namespace
detail
{
template
<
typename
T
>
struct
dtype_helper
{
static
const
py
::
dtype
dtype
;
};
template
<>
const
py
::
dtype
dtype_helper
<
double
>::
dtype
(
"=f8"
);
template
<>
const
py
::
dtype
dtype_helper
<
long
double
>::
dtype
(
"=f16"
);
}
// namespace detail
/// Creating the tamaas python module
PYBIND11_MODULE
(
_tamaas
,
mod
)
{
mod
.
doc
()
=
"Tamaas module for python"
;
// Wrapping the base methods
mod
.
def
(
"initialize"
,
&
initialize
,
py
::
arg
(
"num_threads"
)
=
0
,
"Initialize tamaas with desired number of threads"
);
mod
.
def
(
"finalize"
,
&
finalize
,
"Final cleanup"
);
// Default dtype of numpy arrays
mod
.
attr
(
"dtype"
)
=
detail
::
dtype_helper
<
Real
>::
dtype
;
// Wrapping release information
auto
info
=
py
::
class_
<
TamaasInfo
>
(
mod
,
"TamaasInfo"
);
info
.
attr
(
"version"
)
=
TamaasInfo
::
version
;
info
.
attr
(
"build_type"
)
=
TamaasInfo
::
build_type
;
info
.
attr
(
"branch"
)
=
TamaasInfo
::
branch
;
info
.
attr
(
"commit"
)
=
TamaasInfo
::
commit
;
info
.
attr
(
"diff"
)
=
TamaasInfo
::
diff
;
info
.
attr
(
"remotes"
)
=
TamaasInfo
::
remotes
;
// Wrapping tamaas components
wrap
::
wrapCore
(
mod
);
wrap
::
wrapPercolation
(
mod
);
wrap
::
wrapSurface
(
mod
);
wrap
::
wrapModel
(
mod
);
wrap
::
wrapSolvers
(
mod
);
wrap
::
wrapCompute
(
mod
);
/// Wrapping test features
wrap
::
wrapTestFeatures
(
mod
);
#if defined(TAMAAS_LEGACY_BEM)
// Legacy wrap
py
::
class_
<
wrap
::
smart_pointer
<
UInt
>>
(
mod
,
"smart_pointer_UInt"
)
.
def
(
"assign"
,
&
wrap
::
smart_pointer
<
UInt
>::
assign
);
py
::
class_
<
wrap
::
smart_pointer
<
Real
>>
(
mod
,
"smart_pointer_Real"
)
.
def
(
"assign"
,
&
wrap
::
smart_pointer
<
Real
>::
assign
);
py
::
class_
<
wrap
::
smart_pointer
<
long
>>
(
mod
,
"smart_pointer_long"
)
.
def
(
"assign"
,
&
wrap
::
smart_pointer
<
long
>::
assign
);
wrap
::
wrapBEM
(
mod
);
#endif
}
}
// namespace tamaas
Event Timeline
Log In to Comment