File tree Expand file tree Collapse file tree 5 files changed +15
-15
lines changed
implementations/slotqueue Expand file tree Collapse file tree 5 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 1111
1212template <typename T> class HostedSlotQueue {
1313private:
14- typedef uint64_t timestamp_t ;
15- constexpr static timestamp_t MAX_TIMESTAMP = ~((uint64_t )0 );
14+ typedef uint32_t timestamp_t ;
15+ constexpr static timestamp_t MAX_TIMESTAMP = ~((uint32_t )0 );
1616 constexpr static MPI_Aint DUMMY_RANK = ~((MPI_Aint)0 );
1717
1818 struct data_t {
1919 T data;
20- uint64_t timestamp;
20+ uint32_t timestamp;
2121 };
2222
2323 MPI_Comm _comm;
Original file line number Diff line number Diff line change 1111
1212template <typename T> class SlotNodeQueue_2 {
1313private:
14- typedef uint64_t timestamp_t ;
15- constexpr static timestamp_t MAX_TIMESTAMP = ~((uint64_t )0 );
14+ typedef uint32_t timestamp_t ;
15+ constexpr static timestamp_t MAX_TIMESTAMP = ~((uint32_t )0 );
1616 constexpr static MPI_Aint DUMMY_RANK = ~((MPI_Aint)0 );
1717
1818 struct data_t {
1919 T data;
20- uint64_t timestamp;
20+ uint32_t timestamp;
2121 };
2222
2323 MPI_Comm _comm;
Original file line number Diff line number Diff line change 1111
1212template <typename T> class SlotNodeQueue {
1313private:
14- typedef uint64_t timestamp_t ;
15- constexpr static timestamp_t MAX_TIMESTAMP = ~((uint64_t )0 );
14+ typedef uint32_t timestamp_t ;
15+ constexpr static timestamp_t MAX_TIMESTAMP = ~((uint32_t )0 );
1616 constexpr static MPI_Aint DUMMY_RANK = ~((MPI_Aint)0 );
1717
1818 struct data_t {
1919 T data;
20- uint64_t timestamp;
20+ uint32_t timestamp;
2121 };
2222
2323 MPI_Comm _comm;
Original file line number Diff line number Diff line change 1111
1212template <typename T> class UnboundedSlotQueue {
1313private:
14- typedef uint64_t timestamp_t ;
15- constexpr static timestamp_t MAX_TIMESTAMP = ~((uint64_t )0 );
14+ typedef uint32_t timestamp_t ;
15+ constexpr static timestamp_t MAX_TIMESTAMP = ~((uint32_t )0 );
1616 constexpr static MPI_Aint DUMMY_RANK = ~((MPI_Aint)0 );
1717
1818 struct data_t {
1919 T data;
20- uint64_t timestamp;
20+ uint32_t timestamp;
2121 };
2222
2323 MPI_Comm _comm;
Original file line number Diff line number Diff line change 1111
1212template <typename T> class SlotQueue {
1313private:
14- typedef uint64_t timestamp_t ;
15- constexpr static timestamp_t MAX_TIMESTAMP = ~((uint64_t )0 );
14+ typedef uint32_t timestamp_t ;
15+ constexpr static timestamp_t MAX_TIMESTAMP = ~((uint32_t )0 );
1616 constexpr static MPI_Aint DUMMY_RANK = ~((MPI_Aint)0 );
1717
1818 struct data_t {
1919 T data;
20- uint64_t timestamp;
20+ uint32_t timestamp;
2121 };
2222
2323 MPI_Comm _comm;
You can’t perform that action at this time.
0 commit comments