types.hpp
1 
6 #pragma once
7 
8 #include <chrono>
9 #include <cstdint>
10 
11 namespace rapidsmpf::bootstrap {
12 
14 using Rank = std::int32_t;
15 
17 using Duration = std::chrono::duration<double>;
18 
19 } // namespace rapidsmpf::bootstrap
std::int32_t Rank
Type alias for communicator::Rank.
Definition: types.hpp:14
std::chrono::duration< double > Duration
Type alias for Duration type.
Definition: types.hpp:17