OGS
partition.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) OpenGeoSys Community (opengeosys.org)
2// SPDX-License-Identifier: BSD-3-Clause
3
4#pragma once
5
6#include <utility>
7
8namespace MeshLib::IO
9{
11{
12 std::size_t local_offset;
13 std::size_t local_length;
15 std::size_t global_length;
16};
17
18PartitionInfo getPartitionInfo(std::size_t const size,
19 unsigned int const n_files);
20bool isFileManager();
21} // namespace MeshLib::IO
PartitionInfo getPartitionInfo(std::size_t const size, unsigned int const n_files)
bool isFileManager()
std::size_t longest_local_length
Definition partition.h:14