forked from akyrola/shotgun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcas_array.h
150 lines (120 loc) · 3.91 KB
/
cas_array.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
/*
Copyright [2011] [Aapo Kyrola, Joseph Bradley, Danny Bickson, Carlos Guestrin / Carnegie Mellon University]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include <pthread.h>
#include <vector>
#include <iterator>
#include "assert.h"
#include <cstdlib>
#ifndef _CAS_ARRAY_
#define _CAS_ARRAY_
// Concurrent array using compare-and-swap operations.
// Implements ONLY add() for mutability, and supports only doubles.
#define CACHELINE 8
template <typename T=double>
class cas_array {
public:
T * arr;
int len;
// Note: padding for cache lines
cas_array(int sz) {
assert(sizeof(T)>0);
#ifndef PADDED_ARRAY
arr = (T *) calloc(sz, sizeof(T));
#endif
#ifdef PADDED_ARRAY
arr = (T *) calloc(sz*CACHELINE, sizeof(T));
#endif
len = sz;
}
cas_array() {
arr = (T *) calloc(0, sizeof(T));
len = 0;
}
~cas_array() {
if (arr != NULL) free(arr);
}
// Note: also destroys contents
void resize(int sz) {
#ifndef PADDED_ARRAY
arr = (T *) realloc(arr, sz * sizeof(T));
memset(arr, 0, sz *sizeof(T));
#endif
#ifdef PADDED_ARRAY
arr = (T *) realloc(arr, sz*CACHELINE *sizeof(T));
memset(arr, 0, sz*CACHELINE *sizeof(T));
#endif
len = sz;
}
T& operator[] (unsigned int idx) {
#ifdef PADDED_ARRAY
idx <<= 3;
#endif
return arr[idx];
}
// Borrowed from Guy Blelloch
inline bool CAS(long *ptr, long oldv, long newv) {
unsigned char ret;
/* Note that sete sets a 'byte' not the word */
__asm__ __volatile__ (
" lock\n"
" cmpxchgq %2,%1\n"
" sete %0\n"
: "=q" (ret), "=m" (*ptr)
: "r" (newv), "m" (*ptr), "a" (oldv)
: "memory");
return ret;
}
void mul(int idx, double fact) {
assert(idx<len);
#ifdef PADDED_ARRAY
idx <<= 3;
#endif
volatile double prev;
volatile double newval;
volatile double oldval;
do {
prev = arr[idx];
oldval = prev;
newval = prev*fact;
} while (!CAS(reinterpret_cast<long *>(&arr[idx]), *reinterpret_cast<volatile long *>(&prev), *reinterpret_cast<volatile long*>(&newval)));
}
void add(int idx, double delta) {
assert(idx<len);
#ifdef PADDED_ARRAY
idx <<= 3;
#endif
volatile double prev;
volatile double newval;
volatile double oldval;
do {
prev = arr[idx];
oldval = prev;
newval = prev + delta;
} while (!CAS(reinterpret_cast<long *>(&arr[idx]), *reinterpret_cast<volatile long *>(&prev), *reinterpret_cast<volatile long*>(&newval)));
}
void max(int idx, double delta) {
assert(idx<len);
#ifdef PADDED_ARRAY
idx <<= 3;
#endif
volatile double prev;
volatile double newval;
volatile double oldval;
do {
prev = arr[idx];
oldval = prev;
newval = std::max((double)prev , delta);
} while (!CAS(reinterpret_cast<long *>(&arr[idx]), *reinterpret_cast<volatile long *>(&prev), *reinterpret_cast<volatile long*>(&newval)));
}
};
#endif