This repository is currently being migrated. It's locked while the migration is in progress.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.h
220 lines (185 loc) · 6.24 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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
/*
Copyright (c) 2009-2018, 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
*/
#pragma once
#include <cstdio>
#include <cstring>
#include <fstream>
#include <time.h>
#include "types.h"
#include <vector>
#include <math.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
void set_post_cleanup_callback(void(*cb)(void));
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
}
void MySystem(char * sysCmd, char ** argc);
#ifdef _MSC_VER
#pragma warning (disable : 4068 ) // disable unknown pragma warning
#endif
#ifdef __GCC__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Woverloaded-virtual"
#elif defined __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Woverloaded-virtual"
#endif
struct null_stream : public std::streambuf
{
void overflow(char) { }
};
#ifdef __GCC__
#pragma GCC diagnostic pop
#elif defined __clang__
#pragma clang diagnostic pop
#endif
template <class IntType>
inline std::string unit_format(IntType n)
{
char buffer[1024];
if (n <= 9999ULL)
{
snprintf(buffer, 1024, "%4d ", int32(n));
return buffer;
}
if (n <= 9999999ULL)
{
snprintf(buffer, 1024, "%4d K", int32(n / 1000ULL));
return buffer;
}
if (n <= 9999999999ULL)
{
snprintf(buffer, 1024, "%4d M", int32(n / 1000000ULL));
return buffer;
}
if (n <= 9999999999999ULL)
{
snprintf(buffer, 1024, "%4d G", int32(n / 1000000000ULL));
return buffer;
}
snprintf(buffer, 1024, "%4d T", int32(n / (1000000000ULL * 1000ULL)));
return buffer;
}
void print_cpu_details();
#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, bool checkStatus = true);
~ThreadGroupTempAffinity();
};
#endif
// a secure (but partial) alternative for sscanf
// see example usage in pcm-core.cpp
typedef std::istringstream pcm_sscanf;
class s_expect : public std::string
{
public:
explicit s_expect(const char * s) : std::string(s) {}
explicit s_expect(const std::string & s) : std::string(s) {}
friend std::istream & operator >> (std::istream & istr, s_expect && s);
friend std::istream & operator >> (std::istream && istr, s_expect && s);
private:
void match(std::istream & istr) const
{
istr >> std::noskipws;
const auto len = length();
char * buffer = new char[len + 2];
buffer[0] = 0;
istr.get(buffer, len+1);
if (*this != std::string(buffer))
{
istr.setstate(std::ios_base::failbit);
}
delete [] buffer;
}
};
inline std::istream & operator >> (std::istream & istr, s_expect && s)
{
s.match(istr);
return istr;
}
inline std::istream & operator >> (std::istream && istr, s_expect && s)
{
s.match(istr);
return istr;
}
inline tm pcm_localtime()
{
time_t now = time(NULL);
tm result;
#ifdef _MSC_VER
localtime_s(&result, &now);
#else
localtime_r(&now, &result);
#endif
return result;
}
class PCM;
bool CheckAndForceRTMAbortMode(const char * argv, PCM * m);
void print_help_force_rtm_abort_mode(const int alignment);
struct StackedBarItem {
double fraction;
std::string label; // not used currently
char fill;
StackedBarItem() {}
StackedBarItem(double fraction_,
const std::string & label_,
char fill_) : fraction(fraction_), label(label_), fill(fill_) {}
};
void drawStackedBar(const std::string & label, std::vector<StackedBarItem> & h, const int width = 80);