modification to the base code for MPI-developement up to processor boundaries

This commit is contained in:
Hamidreza Norouzi
2024-04-27 09:03:19 -07:00
parent 5c65b92008
commit e7215159af
44 changed files with 646 additions and 477 deletions

View File

@ -36,15 +36,16 @@ public:
using NextType = deviceViewType1D<uint32>;
private:
cells searchCells_;
HeadType head_{"periodic::head", 1, 1, 1};
cells searchCells_;
NextType next_{"periodic::next", 1};
HeadType head_{ "periodic::head", 1, 1, 1 };
real sizeRatio_ = 1.0;
NextType next_{ "periodic::next", 1 };
uint32 nextCapacity_ = 0;
real sizeRatio_ = 1.0;
uint32 nextCapacity_ = 0;
void checkAllocateNext(uint32 n);