imate
C++/CUDA Reference
highres_time_stamp.h
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: Copyright 2021, Siavash Ameli <sameli@berkeley.edu>
3  * SPDX-License-Identifier: BSD-3-Clause
4  * SPDX-FileType: SOURCE
5  *
6  * This program is free software: you can redistribute it and/or modify it
7  * under the terms of the license found in the LICENSE.txt file in the root
8  * directory of this source tree.
9  */
10 
11 
12 #ifndef _RANDOM_GENERATOR_HIGHRES_TIME_STAMP_H_
13 #define _RANDOM_GENERATOR_HIGHRES_TIME_STAMP_H_
14 
15 
16 // ======
17 // Header
18 // ======
19 
20 #include <stdint.h> // uint64_t
21 
22 
23 // ============
24 // Declarations
25 // ============
26 
27 // Get HighRes Time Stamp
28 uint64_t get_highres_time_stamp(void);
29 
30 
31 #endif // _RANDOM_GENERATOR_HIGHRES_TIME_STAMP_H_
uint64_t get_highres_time_stamp(void)