Loading [MathJax]/extensions/tex2jax.js
BioCMAMC-ST
serdes_class.hpp
1#ifndef __UTILS_SERDES_HPP__
2#define __UTILS_SERDES_HPP__
3
4#include <cassert>
5#include <mc/traits.hpp>
6
7// NOLINTBEGIN
9{
10 using uniform_weight = std::true_type; // Using type alias
12 using FloatType = float;
13
14 enum class particle_var : int
15 {
16 a = 0,
17 b,
18 c,
19 COUNT
20 };
21
22 static constexpr std::size_t n_var = INDEX_FROM_ENUM(particle_var::COUNT);
23 static constexpr std::string_view name = "simple";
25
26 MODEL_CONSTANT FloatType a_i = 5e-6; // m
27
28 KOKKOS_INLINE_FUNCTION static void init([[maybe_unused]] const MC::KPRNG::pool_type& random_pool,
29 std::size_t idx,
30 const SelfParticle& arr)
31 {
32 GET_PROPERTY(SerdeModel::particle_var::a) = a_i;
33 }
34
35 KOKKOS_INLINE_FUNCTION static double mass([[maybe_unused]] std::size_t idx,
36 [[maybe_unused]] const SelfParticle& arr)
37 {
38 return 1.;
39 }
40
41 KOKKOS_INLINE_FUNCTION static MC::Status
42 update([[maybe_unused]] const MC::KPRNG::pool_type& random_pool,
43 [[maybe_unused]] FloatType d_t,
44 [[maybe_unused]] std::size_t idx,
45 [[maybe_unused]] const SelfParticle& arr,
46 [[maybe_unused]] const MC::LocalConcentration& c)
47 {
48
49 return MC::Status::Idle;
50 }
51
52 KOKKOS_INLINE_FUNCTION static void
53 division([[maybe_unused]] const MC::KPRNG::pool_type& random_pool,
54 [[maybe_unused]] std::size_t idx,
55 [[maybe_unused]] std::size_t idx2,
56 [[maybe_unused]] const SelfParticle& arr,
57 [[maybe_unused]] const SelfParticle& buffer_arr)
58 {
59 }
60
61 KOKKOS_INLINE_FUNCTION static void
62 contribution([[maybe_unused]] std::size_t idx,
63 [[maybe_unused]] std::size_t position,
64 [[maybe_unused]] double weight,
65 [[maybe_unused]] const SelfParticle& arr,
66 [[maybe_unused]] const MC::ContributionView& contributions)
67 {
68 }
69};
70static_assert(ModelType<SerdeModel>, "Check non serde model");
71
72// // NOLINTEND
73// template <typename T> std::ostringstream wrap_ser(T& t)
74// {
75// std::ostringstream buff(std::ios::binary);
76// cereal::BinaryOutputArchive ar(buff);
77// t.serialize(ar);
78// return buff;
79// }
80
81// template <typename T, class StreamType> void wrap_de(T& t, StreamType& buff)
82// {
83// std::istringstream iss(buff.str(), std::ios::binary);
84// cereal::BinaryInputArchive ar(iss);
85// t.serialize(ar);
86// }
87
88#endif
Kokkos::Random_XorShift1024_Pool< Kokkos::DefaultExecutionSpace > pool_type
Definition prng.hpp:17
Definition traits.hpp:81
Kokkos::Subview< KernelConcentrationType, int, decltype(Kokkos::ALL)> LocalConcentration
Definition alias.hpp:42
Kokkos::Experimental::ScatterView< double **, Kokkos::LayoutRight > ContributionView
Definition alias.hpp:31
Kokkos::View< F *[Nd]> ParticlesModel
Definition traits.hpp:33
Status
Definition alias.hpp:11
Definition serdes_class.hpp:9
static constexpr std::string_view name
Definition serdes_class.hpp:23
static constexpr std::size_t n_var
Definition serdes_class.hpp:22
static KOKKOS_INLINE_FUNCTION void init(const MC::KPRNG::pool_type &random_pool, std::size_t idx, const SelfParticle &arr)
Definition serdes_class.hpp:28
particle_var
Definition serdes_class.hpp:15
static KOKKOS_INLINE_FUNCTION MC::Status update(const MC::KPRNG::pool_type &random_pool, FloatType d_t, std::size_t idx, const SelfParticle &arr, const MC::LocalConcentration &c)
Definition serdes_class.hpp:42
static KOKKOS_INLINE_FUNCTION void division(const MC::KPRNG::pool_type &random_pool, std::size_t idx, std::size_t idx2, const SelfParticle &arr, const SelfParticle &buffer_arr)
Definition serdes_class.hpp:53
float FloatType
Definition serdes_class.hpp:12
static KOKKOS_INLINE_FUNCTION void contribution(std::size_t idx, std::size_t position, double weight, const SelfParticle &arr, const MC::ContributionView &contributions)
Definition serdes_class.hpp:62
MC::ParticlesModel< Self::n_var, Self::FloatType > SelfParticle
Definition serdes_class.hpp:24
std::true_type uniform_weight
Definition serdes_class.hpp:10
static KOKKOS_INLINE_FUNCTION double mass(std::size_t idx, const SelfParticle &arr)
Definition serdes_class.hpp:35
MODEL_CONSTANT FloatType a_i
Definition serdes_class.hpp:26