Shamrock 2025.10.0
Astrophysical Code
Loading...
Searching...
No Matches
GeneratorLatticeHCP.hpp
Go to the documentation of this file.
1// -------------------------------------------------------//
2//
3// SHAMROCK code for hydrodynamics
4// Copyright (c) 2021-2026 Timothée David--Cléris <tim.shamrock@proton.me>
5// SPDX-License-Identifier: CeCILL Free Software License Agreement v2.1
6// Shamrock is licensed under the CeCILL 2.1 License, see LICENSE for more information
7//
8// -------------------------------------------------------//
9
10#pragma once
11
21#include "shammath/AABB.hpp"
25
27
28 template<class Tvec, bool Discontinuous = true>
32
33 template<class Tvec>
34 struct IteratorTypeGetter<Tvec, false> {
35 using type = typename shammath::LatticeHCP<Tvec>::Iterator;
36 };
37
38 template<class Tvec, bool Discontinuous = true>
40 using Tscal = shambase::VecComponent<Tvec>;
43 using LatticeIter = typename IteratorTypeGetter<Tvec, Discontinuous>::type;
44
45 ShamrockCtx &context;
46 Tscal dr;
48
49 LatticeIter generator;
50
51 static auto init_gen(Tscal dr, std::pair<Tvec, Tvec> box) {
52
53 auto [idxs_min, idxs_max] = Lattice::get_box_index_bounds(dr, box.first, box.second);
54 u32 idx_gen = 0;
55 return LatticeIter(dr, idxs_min, idxs_max);
56 };
57
58 public:
59 GeneratorLatticeHCP(ShamrockCtx &context, Tscal dr, std::pair<Tvec, Tvec> box)
60 : context(context), dr(dr), box(box), generator(init_gen(dr, box)) {}
61
62 bool is_done() { return generator.is_done(); }
63
65 StackEntry stack_loc{};
66
67 using namespace shamrock::patch;
68 PatchScheduler &sched = shambase::get_check_ref(context.sched);
69
70 std::vector<Tvec> pos_data;
71
72 // Fill pos_data if the scheduler has some patchdata in this rank
73 if (!is_done()) {
74 u64 loc_gen_count = nmax;
75
76 auto gen_info = shamalgs::collective::fetch_view(loc_gen_count);
77
78 u64 skip_start = gen_info.head_offset;
79 u64 gen_cnt = loc_gen_count;
80 u64 skip_end = gen_info.total_byte_count - loc_gen_count - gen_info.head_offset;
81
82 shamlog_debug_ln(
83 "GeneratorLatticeHCP",
84 "generate : ",
85 skip_start,
86 gen_cnt,
87 skip_end,
88 "total",
89 skip_start + gen_cnt + skip_end);
90
91 generator.skip(skip_start);
92 auto tmp = generator.next_n(gen_cnt);
93 generator.skip(skip_end);
94
95 for (Tvec r : tmp) {
96 if (Patch::is_in_patch_converted(r, box.lower, box.upper)) {
97 pos_data.push_back(r);
98 }
99 }
100 }
101
102 // Make a patchdata from pos_data
103 PatchDataLayer tmp(sched.get_layout_ptr_old());
104 if (!pos_data.empty()) {
105 tmp.resize(pos_data.size());
106 tmp.fields_raz();
107
108 {
109 u32 len = pos_data.size();
111 = tmp.get_field<Tvec>(sched.pdl_old().get_field_idx<Tvec>("xyz"));
112 // sycl::buffer<Tvec> buf(pos_data.data(), len);
113 f.override(pos_data, len);
114 }
115
116 {
118 = tmp.get_field<Tscal>(sched.pdl_old().get_field_idx<Tscal>("hpart"));
119 f.override(dr);
120 }
121 }
122 return tmp;
123 }
124
125 std::string get_name() { return "GeneratorLatticeHCP"; }
127 };
128
129} // namespace shammodels::sph::modules
std::uint32_t u32
32 bit unsigned integer
std::uint64_t u64
64 bit unsigned integer
The MPI scheduler.
Iterator utility to generate the lattice.
Iterator utility to generate the lattice.
utility for generating HCP crystal lattices
bool is_done()
This function return true if the setup is done.
ISPHSetupNode_Dot get_dot_subgraph()
Get a dot subgraph describing the node and its childrens (recursively)
std::string get_name()
Get the name of the node.
shamrock::patch::PatchDataLayer next_n(u32 nmax)
This function generate patchdata with at most nmax per MPI ranks This function is always assumed as c...
This class is an interface that all SPH setup nodes must implement. It describe an operation associat...
u32 get_field_idx(const std::string &field_name) const
Get the field id if matching name & type.
PatchDataLayer container class, the layout is described in patchdata_layout.
T & get_check_ref(const std::unique_ptr< T > &ptr, SourceLocation loc=SourceLocation())
Takes a std::unique_ptr and returns a reference to the object it holds. It throws a std::runtime_erro...
Definition memory.hpp:110
namespace for the sph model modules
This file contains the definition for the stacktrace related functionality.
Axis-Aligned bounding box.
Definition AABB.hpp:99
T lower
Lower bound of the AABB.
Definition AABB.hpp:104
T upper
Upper bound of the AABB.
Definition AABB.hpp:105
This struct is used to generate a dot graph of the setup tree.