-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathutils.h
162 lines (136 loc) · 4.64 KB
/
utils.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/*
Copyright (c) 2009-2013, Intel Corporation
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the dis
tribution.
* Neither the name of Intel Corporation nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNES
S FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDI
NG, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRI
CT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
// written by Roman Dementiev
/*! \file utils.h
\brief Some common utility routines
*/
#ifndef PCM_UTILS_HEADER
#define PCM_UTILS_HEADER
#include <cstdio>
#include <cstring>
#include <fstream>
#include "cpucounters.h"
#ifndef _MSC_VER
#include <csignal>
#include <ctime>
#include <cmath>
#endif
void exit_cleanup(void);
void set_signal_handlers(void);
void restore_signal_handlers(void);
#ifndef _MSC_VER
void sigINT_handler(int signum);
void sigHUP_handler(int signum);
void sigUSR_handler(int signum);
void sigSTOP_handler(int signum);
void sigCONT_handler(int signum);
#endif
#ifdef _MSC_VER
inline void win_usleep(int delay_us)
{
uint64 t1 = 0, t2 = 0, freq = 0;
uint64 wait_tick;
QueryPerformanceFrequency((LARGE_INTEGER *) &freq);
wait_tick = freq * delay_us / 1000000ULL;
QueryPerformanceCounter((LARGE_INTEGER *) &t1);
do {
QueryPerformanceCounter((LARGE_INTEGER *) &t2);
_mm_pause();
} while ((t2-t1) < wait_tick);
}
#endif
inline void MySleep(int delay)
{
#ifdef _MSC_VER
if(delay) Sleep(delay*1000);
#else
::sleep(delay);
#endif
}
inline void MySleepMs(int delay_ms)
{
#ifdef _MSC_VER
if(delay_ms) Sleep((DWORD)delay_ms);
#else
struct timespec sleep_intrval;
double complete_seconds;
sleep_intrval.tv_nsec = static_cast<long>(1000000000.0*(::modf(delay_ms/1000.0,&complete_seconds)));
sleep_intrval.tv_sec = static_cast<time_t>(complete_seconds);
::nanosleep(&sleep_intrval, NULL);
#endif
}
inline void MySleepUs(int delay_us)
{
#ifdef _MSC_VER
if(delay_us) win_usleep(delay_us);
#else
::usleep(delay_us);
#endif
}
void MySystem(char * sysCmd, char ** argc);
#ifdef _MSC_VER
#pragma warning (disable : 4068 ) // disable unknown pragma warning
#endif
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Woverloaded-virtual"
struct null_stream : public std::streambuf
{
void overflow(char) { }
};
#pragma clang diagnostic pop
template <class IntType>
inline std::string unit_format(IntType n)
{
char buffer[1024];
if (n <= 9999ULL)
{
sprintf(buffer, "%4d ", int32(n));
return buffer;
}
if (n <= 9999999ULL)
{
sprintf(buffer, "%4d K", int32(n / 1000ULL));
return buffer;
}
if (n <= 9999999999ULL)
{
sprintf(buffer, "%4d M", int32(n / 1000000ULL));
return buffer;
}
if (n <= 9999999999999ULL)
{
sprintf(buffer, "%4d G", int32(n / 1000000000ULL));
return buffer;
}
sprintf(buffer, "%4d T", int32(n / (1000000000ULL * 1000ULL)));
return buffer;
}
#define PCM_UNUSED(x) (void)(x)
#define PCM_COMPILE_ASSERT(condition) \
typedef char pcm_compile_assert_failed [ (condition) ? 1 : -1 ]; \
pcm_compile_assert_failed pcm_compile_assert_failed_; \
PCM_UNUSED(pcm_compile_assert_failed_);
#ifdef _MSC_VER
class ThreadGroupTempAffinity
{
GROUP_AFFINITY PreviousGroupAffinity;
ThreadGroupTempAffinity(); // forbidden
ThreadGroupTempAffinity(const ThreadGroupTempAffinity &); // forbidden
ThreadGroupTempAffinity& operator = (const ThreadGroupTempAffinity &); // forbidden
public:
ThreadGroupTempAffinity(uint32 core_id);
~ThreadGroupTempAffinity();
};
#endif
#endif