Page MenuHomec4science

tamaas_module.cpp
No OneTemporary

File Metadata

Created
Thu, May 2, 00:26

tamaas_module.cpp

/**
* @file
* @section LICENSE
*
* Copyright (©) 2016-19 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>
/* -------------------------------------------------------------------------- */
__BEGIN_TAMAAS__
namespace py = pybind11;
/// 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");
// Wrapping release information
auto info = py::class_<TamaasInfo>(mod, "TamaasInfo");
#ifndef STRIP_INFO
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;
#else
info.attr("build_type") = "";
info.attr("branch") = "";
info.attr("commit") = "";
info.attr("diff") = "";
info.attr("remotes") = "";
#endif
// Wrapping tamaas components
wrap::wrapCore(mod);
wrap::wrapPercolation(mod);
wrap::wrapSurface(mod);
wrap::wrapModel(mod);
wrap::wrapSolvers(mod);
/// Wrapping test features
wrap::wrapTestFeatures(mod);
// 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);
#if defined(LEGACY_BEM)
wrap::wrapBEM(mod);
#endif
}
__END_TAMAAS__

Event Timeline