-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathutils.h
160 lines (134 loc) · 3.19 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
/*
* utility for general use.
*
* copyright@ Yimin Zhong <[email protected]> All Rights Reserved.
*
*/
#ifndef UTILS_H
#define UTILS_H
#include <iostream>
#include <fstream>
#include <sstream>
#include <cmath>
#include <cstring>
#include <cassert>
#include <vector>
#include <unordered_set>
#include <unordered_map>
#include <queue>
#include <algorithm>
#include <utility>
#include <functional>
#include <chrono>
#include <iomanip>
#include "cblas.h"
#if !defined __extern_always_inline && defined __clang__
# if defined __GNUC_STDC_INLINE__ || defined __GNUC_GNU_INLINE__
# define __extern_inline extern __inline __attribute__ ((__gnu_inline__))
# define __extern_always_inline \
extern __always_inline __attribute__ ((__gnu_inline__))
# else
# define __extern_inline extern __inline
# define __extern_always_inline extern __always_inline
# endif
#endif
#ifdef RUN_OMP
#include "omp.h"
#endif
#define EPS 1e-12
#define DIM 2 /* 2D FMM, do not change */
#define SQR(X) ((X)*(X))
#ifdef DISP
#define RUN(s, func){ \
std::chrono::steady_clock::time_point begin =std::chrono::steady_clock::now(); \
func;\
std::chrono::steady_clock::time_point end = std::chrono::steady_clock::now();\
std::cout << std::setw(15)<< s << " " << std::setprecision(5) << std::setw(8) << std::chrono::duration_cast<std::chrono::microseconds>(end - begin).count()/1000000.0 << " seconds"<<std::endl;\
}
#else
#define RUN(s, func){\
func;\
}
#endif
#define CHUNKSIZE 80
typedef int index_t;
typedef double scalar_t;
typedef bool bool_t;
using std::unordered_set;
using std::vector;
using std::queue;
using std::unordered_map;
using std::unordered_set;
using std::max;
using std::min;
using std::sqrt;
using std::acos;
using std::atan;
template<typename T>
class Array {
protected:
T *data;
size_t size;
bool owner;
public:
Array(size_t _n) {
data = (T *) malloc(_n * sizeof(T));
memset(data, 0, _n * sizeof(T));
size = _n;
owner = true;
}
Array(size_t _n, bool _o) {
data = (T *) malloc(_n * sizeof(T));
size = _n;
owner = _o;
}
Array(std::initializer_list<T> l) {
size_t index = 0;
for (auto it = l.begin(); it != l.end(); it++) {
index++;
}
data = (T *) malloc(index * sizeof(T));
T *ptr = data;
for (auto it = l.begin(); it != l.end(); it++) {
*(ptr++) = *it;
}
size = index;
owner = true;
}
Array(T *_data, size_t _n, bool _o) {
if (_o) {
data = (T *) malloc(_n * sizeof(T));
memcpy(data, _data, _n * sizeof(T));
size = _n;
owner = _o;
} else {
data = _data;
size = _n;
owner = _o;
}
}
~Array() {
if (owner) {
free(data);
data = nullptr;
}
}
size_t get_size() {
return size;
}
bool get_owner() {
return owner;
}
T *get_data() {
return data;
}
T &operator[](size_t i) {
assert(i < size);
return data[i];
}
const T &operator[](size_t i) const {
assert(i < size);
return data[i];
}
};
#endif //UTILS_H