OGS
partition.h
Go to the documentation of this file.
1
13#pragma once
14
15#include <utility>
16
17namespace MeshLib::IO
18{
20{
21 std::size_t local_offset;
22 std::size_t local_length;
24 std::size_t global_length;
25};
26
27PartitionInfo getPartitionInfo(std::size_t const size,
28 unsigned int const n_files);
29bool isFileManager();
30} // namespace MeshLib::IO
PartitionInfo getPartitionInfo(std::size_t const size, unsigned int const n_files)
Definition partition.cpp:33
bool isFileManager()
Definition partition.cpp:26
std::size_t longest_local_length
Definition partition.h:23