-
Notifications
You must be signed in to change notification settings - Fork 4
/
hda.cpp
223 lines (182 loc) · 6.57 KB
/
hda.cpp
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
221
222
223
#include "map.h"
#include <omp.h>
#include <tbb/concurrent_priority_queue.h>
#include <tbb/concurrent_queue.h>
#include <atomic>
#include <unordered_map>
using namespace std;
int hash_node(int node_id, int thread_count)
{
return node_id % thread_count;
}
TestResult* find_path_hda_openmp(const Map *map, int thread_count)
{
omp_set_num_threads(thread_count);
bool finished = false;
tbb::concurrent_queue<pair<int, pair<Node *, Node *>>> queue[thread_count];
// int shortest = INT32_MAX;
atomic_int remain_count;
remain_count = 1;
queue[hash_node(map->start->node_id, thread_count)].push({map->goal->compute_heuristic(map->start), {NULL, map->start}});
// int count_array[thread_count];
TestResult* ret = new TestResult(thread_count);
ret->shortest = INT32_MAX;
#pragma omp parallel
{
int id = omp_get_thread_num();
int count = 0;
int goal_id = map->goal->node_id;
priority_queue<pair<int, pair<Node *, Node *>>> open_list;
unordered_map<int, int> g_value;
while (!finished)
{
while (1)
{
pair<int, pair<Node *, Node *>> item;
bool has_item = queue[id].try_pop(item);
if (has_item) {
open_list.push(item);
} else {
break;
}
}
if (open_list.size() == 0)
{
if (remain_count == 0)
{
break;
}
continue;
}
pair<int, pair<Node *, Node *>> item = open_list.top();
open_list.pop();
count++;
Node *prev_node = item.second.first;
Node *current_node = item.second.second;
int current_g_value = item.first - map->goal->compute_heuristic(current_node);
// cout << id << " thread handling " << current_node->node_id << endl;
if (g_value.count(current_node->node_id) > 0 && current_g_value >= g_value[current_node->node_id])
{
remain_count.fetch_add(-1);
continue;
}
else
{
g_value[current_node->node_id] = current_g_value;
}
if (current_node->node_id == goal_id)
{
ret->shortest = g_value[current_node->node_id];
finished = true;
break;
}
vector<pair<int, pair<Node *, Node *>>> expand_buffer;
for (auto edge : current_node->adjacent_list)
{
Node *node = edge.first;
if (prev_node != NULL && prev_node->node_id == node->node_id)
{
continue;
}
int weight = edge.second;
int update_g_value = weight + current_g_value;
int new_f = update_g_value + map->goal->compute_heuristic(node);
expand_buffer.push_back({new_f, {current_node, node}});
}
remain_count.fetch_add(expand_buffer.size() - 1);
for (auto item : expand_buffer)
{
queue[hash_node(item.second.second->node_id, thread_count)].push(item);
}
}
ret->thread_explore[id] = count;
}
// for (int i = 0; i < thread_count; i++)
// {
// cout << i << " thread takes " << count_array[i] << endl;
// }
return ret;
}
TestResult* find_path_hda_openmp_custom(const Map *map, int thread_count)
{
omp_set_num_threads(thread_count);
bool finished = false;
tbb::concurrent_priority_queue<pair<int, pair<Node*, Node *>>> queue[thread_count];
// int shortest = INT32_MAX;
atomic_int remain_count;
remain_count = 1;
queue[hash_node(map->start->node_id, thread_count)].push({map->goal->compute_heuristic(map->start), {NULL, map->start}});
// int count_array[thread_count];
TestResult* ret = new TestResult(thread_count);
ret->shortest = INT32_MAX;
#pragma omp parallel
{
int id = omp_get_thread_num();
int count = 0;
int goal_id = map->goal->node_id;
tbb::concurrent_priority_queue<pair<int, pair<Node*, Node *>>> &open_list = queue[id];
unordered_map<int, int> g_value;
while (!finished)
{
// if (id == 0)
// cout << id << " thread running " << remain_count << endl;
pair<int, pair<Node*, Node *>> item;
bool has_item = open_list.try_pop(item);
if (!has_item)
{
if (remain_count == 0)
{
// return NULL;
// cout << id << " thread break " << endl;
break;
}
continue;
}
count++;
Node *prev_node = item.second.first;
Node *current_node = item.second.second;
int current_g_value = item.first - map->goal->compute_heuristic(current_node);
// cout << id << " thread handling " << current_node->node_id << endl;
if (g_value.count(current_node->node_id) > 0 && current_g_value >= g_value[current_node->node_id])
{
remain_count.fetch_add(-1);
continue;
}
else
{
g_value[current_node->node_id] = current_g_value;
}
if (current_node->node_id == goal_id)
{
ret->shortest = g_value[current_node->node_id];
finished = true;
break;
}
vector<pair<int, pair<Node*, Node *>>> expand_buffer;
for (auto edge : current_node->adjacent_list)
{
Node *node = edge.first;
if (prev_node!=NULL&&prev_node->node_id==node->node_id) {
continue;
}
int weight = edge.second;
int update_g_value = weight + current_g_value;
int new_f = update_g_value + map->goal->compute_heuristic(node);
expand_buffer.push_back({new_f, {current_node, node}});
}
remain_count.fetch_add(expand_buffer.size() - 1);
for (auto item : expand_buffer)
{
queue[hash_node(item.second.second->node_id, thread_count)].push(item);
}
}
ret->thread_explore[id] = count;
}
// for (int i = 0; i < thread_count; i ++) {
// cout << i << " thread takes " << count_array[i] << endl;
// }
return ret;
}
// int main()
// {
// }