-
Notifications
You must be signed in to change notification settings - Fork 8
/
wireless_rollout_test_flood.py
executable file
·453 lines (399 loc) · 19.2 KB
/
wireless_rollout_test_flood.py
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
#!/usr/bin/ python3
# -*- coding: utf-8 -*-
# python3
# Make this standard template for testing and training
import networkx as nx
# from networkx.algorithms.approximation import independent_set
import numpy as np
import pandas as pd
import scipy.io as sio
import time
from collections import deque
from copy import deepcopy
from scipy.io import savemat
from scipy.spatial import distance_matrix
import dwave_networkx as dnx
import os
from itertools import chain, combinations
from heuristics import greedy_search, dist_greedy_search, local_greedy_search, mlp_gurobi
# visualization
import matplotlib.pyplot as plt
# This import registers the 3D projection, but is otherwise unused.
from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import
from runtime_config import flags
flags.DEFINE_string('output', 'wireless', 'output folder')
flags.DEFINE_string('test_datapath', './data/ER_Graph_Uniform_NP20_test', 'test dataset')
flags.DEFINE_string('wt_sel', 'qr', 'qr: queue length * rate, q/r: q/r, q: queue length only, otherwise: random')
flags.DEFINE_float('load_min', 0.1, 'traffic load min')
flags.DEFINE_float('load_max', 1.0, 'traffic load max')
flags.DEFINE_float('load_step', 0.1, 'traffic load step')
flags.DEFINE_integer('instances', 10, 'number of layers.')
flags.DEFINE_integer('num_channels', 1, 'number of channels')
# from mwis_dqn_call import dqn_agent
from mwis_rollout_call import rollout_agent
from directory import create_result_folder, find_model_folder
model_origin = find_model_folder(flags.FLAGS, 'dqn')
# dqn_agent.load(model_origin)
rollout_agent.load(os.path.join('result_ERUNI_deep_ld32_c32_l20_cheb1_diver32_res32'))
n_instances = flags.FLAGS.instances
def emv(samples, pemv, n=3):
assert samples.size == pemv.size
k = float(2/(n+1))
return samples * k + pemv * (1-k)
def poisson_graphs_from_dict(gdict):
adj_c = gdict['adj_c']
adj_i = gdict['adj_i']
# d_mtx = gdict['d_mtx']
xys = gdict['xys']
# generate connectivity graph
np.fill_diagonal(adj_c, 0)
graph_c = nx.from_numpy_matrix(adj_c)
for u in graph_c:
graph_c.nodes[u]['xy'] = xys[u, :]
# generate conflict graph
graph_cf = nx.from_numpy_matrix(adj_i)
return graph_c, graph_cf
def poisson_multigraphs_from_dict(gdict, k=3, p=0.8):
adj_c = gdict['adj_c']
adj_i = gdict['adj_i']
# d_mtx = gdict['d_mtx']
xys = gdict['xys']
# generate connectivity graph
np.fill_diagonal(adj_c, 0)
graph_c = nx.from_numpy_matrix(adj_c)
for u in graph_c:
graph_c.nodes[u]['xy'] = xys[u, :]
# generate conflict graph
graphs_cf = []
for c in range(k):
graph_cf = nx.from_numpy_matrix(adj_i)
for u in graph_cf:
for v in graph_cf:
if u <= v:
continue
if adj_i[u, v]:
if np.random.rand() > p:
graph_cf.remove_edge(u, v)
graphs_cf.append(graph_cf)
return graph_c, graphs_cf
def multichannel_conflict_graph(graphs):
# for multiGCN inputs
adj_list = []
# for centralized scheduling
graph_K = nx.Graph()
nk = len(graphs)
no_nodes = []
for k in range(nk):
g = graphs[k]
iu = 0
no_nodes.append(g.number_of_nodes())
for u in g:
j = k * no_nodes[-1] + iu
graph_K.add_node(j, weight=1.0, name='({},{})'.format(iu, k))
iu += 1
assert(len(set(no_nodes)) == 1)
nn = no_nodes[0]
# add interface constraint for single radio
for n in range(nn):
for k1 in range(nk):
v1 = k1*nn + n
for k2 in range(nk):
if k1 >= k2:
continue
v2 = k2*nn + n
graph_K.add_edge(v1, v2)
for k in range(nk):
g = graphs[k]
adj = nx.adjacency_matrix(g)
adj_list.append(adj)
for e in g.edges:
v1, v2 = e
graph_K.add_edge(k*nn+v1, k*nn+v2)
adj_gK = nx.adjacency_matrix(graph_K)
return adj_list, adj_gK
train = False
n_networks = 500
# n_instances = 10
timeslots = 200
if train:
# algolist = ['GCNr-Dist']
algolist = ['Greedy', 'CGCN-TSS']
else:
# algolist = ['Greedy', 'GCNr-Dist']
# algolist = ['Greedy', 'CGCN-TSS', 'Benchmark']
algolist = ['CGCN-TSS']
sim_area = 250
sim_node = 100
sim_rc = 1
sim_ri = 4
n_ch = 1
p_overlap = 0.8
# link rate high and low bound (number of packets per time slot)
sim_rate_hi = 100
sim_rate_lo = 0
# Testing load range (upper limit = 1/(average degree of conflict graphs))
# 10.78 for 10 graphs, 10.56 for 20 graphs
load_min = flags.FLAGS.load_min
load_max = flags.FLAGS.load_max
load_step = flags.FLAGS.load_step
wt_sel = flags.FLAGS.wt_sel
output_dir = flags.FLAGS.output
output_csv = os.path.join(output_dir,
'metric_vs_load_summary_{}-channel_utility-{}_load-{:.1f}-{:.1f}_flood_rollout.csv'
.format(n_ch, wt_sel, load_min, load_max)
)
res_list = []
res_df = pd.DataFrame(columns=['graph', 'seed', 'load', 'name', 'avg_queue_len', 'med_queue_len', 'avg_utility', 'avg_degree'])
if os.path.isfile(output_csv):
res_df = pd.read_csv(output_csv, index_col=0)
d_array = np.zeros((n_networks,), dtype=np.float)
if train:
datapath = flags.FLAGS.datapath
epochs = flags.FLAGS.epochs
else:
datapath = flags.FLAGS.test_datapath
epochs = 1
val_mat_names = sorted(os.listdir(datapath))
cnt = 0
print("Average degree of all conflict graphs: {}".format(np.mean(d_array)))
np.random.seed()
if train:
loss = 1.0
else:
loss = np.nan
wts_sample_file = os.path.join(output_dir, 'samples.txt')
load_array = np.round(np.arange(load_min, load_max+load_step, load_step), 2)
# load = load_array[np.random.randint(0, len(load_array) - 1)]
load = 0.85
buffer = deque(maxlen=20)
for idx in range(0, len(val_mat_names)):
mat_contents = sio.loadmat(os.path.join(datapath, val_mat_names[idx]))
gdict = mat_contents['gdict'][0, 0]
seed = mat_contents['random_seed'][0, 0]
graph_c, graph_i = poisson_graphs_from_dict(gdict)
adj_gK = nx.adjacency_matrix(graph_i)
flows = [e for e in graph_c.edges]
# flows_r = [(e[1], e[0]) for e in graph_c.edges]
# flows = flows + flows_r
nflows = len(flows)
netcfg = "Config: s {}, n {}, f {}, t {}".format(seed, sim_node, nflows, timeslots)
d_list = []
for v in graph_i:
d_list.append(graph_i.degree[v])
avg_degree = np.nanmean(d_list)
i = 0
for i in range(1, n_instances+1):
# for load in load_array:
# treeseed = int(1000 * time.time()) % 10000000
treeseed = i
np.random.seed(treeseed)
# np.random.seed(i)
arrival_rate = 0.5 * (sim_rate_lo + sim_rate_hi) * load
interarrivals = np.random.exponential(1.0/arrival_rate, (nflows, int(2*timeslots*arrival_rate)))
arrival_time = np.cumsum(interarrivals, axis=1)
acc_pkts = np.zeros(shape=(nflows, timeslots))
for t in range(0, timeslots):
acc_pkts[:, t] = np.count_nonzero(arrival_time < t, axis=1)
# arrival_pkts = np.zeros(shape=(nflows, timeslots))
arrival_pkts = np.diff(acc_pkts, prepend=0)
arrival_pkts = arrival_pkts.transpose()
# link_rates = np.random.randint(sim_rate_lo, sim_rate_hi, [timeslots, nflows, n_ch])
link_rates = np.random.normal(0.5 * (sim_rate_lo + sim_rate_hi), 0.25 * (sim_rate_hi - sim_rate_lo),
size=[timeslots, nflows, n_ch])
link_rates = link_rates.astype(int)
link_rates[link_rates < sim_rate_lo] = sim_rate_lo
link_rates[link_rates > sim_rate_hi] = sim_rate_hi
# adj = nx.adjacency_matrix(graph_i)
# adjnp = (nx.to_numpy_matrix(graph_i)>0).tolist()
# mis_all = get_all_mis(adjnp)
to_print = []
time_start = time.time()
weight_samples = []
queue_mtx_dict = {}
dep_pkts_dict = {}
util_mtx_dict = {}
wts_dict = {}
for algo in algolist:
queue_mtx_dict[algo] = np.zeros(shape=(timeslots, nflows))
dep_pkts_dict[algo] = np.zeros(shape=(timeslots, nflows))
util_mtx_dict[algo] = np.zeros(timeslots)
util_mtx_dict[algo][0] = 1
wts_dict[algo] = np.zeros(shape=(nflows, n_ch))
for t in range(1, timeslots):
for algo in algolist:
queue_mtx_dict[algo][t, :] = queue_mtx_dict[algo][t-1, :] + arrival_pkts[t, :]
queue_mtx_algo = np.multiply(np.expand_dims(queue_mtx_dict[algo][t, :], axis=1), np.ones(shape=(nflows, n_ch)))
if wt_sel == 'qr':
wts0 = queue_mtx_algo * link_rates[t, :, :]
elif wt_sel == 'q':
wts0 = queue_mtx_algo
elif wt_sel == 'qor':
wts0 = queue_mtx_algo / link_rates[t, :, :]
elif wt_sel == 'qrm':
wts0 = np.minimum(queue_mtx_algo, link_rates[t, :, :])
else:
np.random.seed(i*1000+t)
wts0 = np.random.uniform(0, 1, (nflows, n_ch))
wts1 = np.reshape(wts0, nflows * n_ch, order='F')
if algo == "Greedy":
wts_dict[algo] = wts1
mwis, total_wt = local_greedy_search(adj_gK, wts_dict[algo])
# mwis2, total_wt2, reward = dqn_agent.solve_mwis(adj, wts_dict[algo], train=False)
mwis0, total_wt0, _ = mlp_gurobi(adj_gK, wts_dict[algo])
# mwis0, total_wt0 = greedy_search(adj_gK, wts1)
util_mtx_dict[algo][t] = total_wt/total_wt0
elif algo == "Greedy-Th":
# wts = emv(wts0, wts)
wts_dict[algo] = wts1
mwis, total_wt = dist_greedy_search(adj_gK, wts_dict[algo], 0.1)
# mwis0, total_wt0 = greedy_search(adj_gK, wts1)
mwis0, total_wt0, _ = mlp_gurobi(adj_gK, wts_dict[algo])
util_mtx_dict[algo][t] = total_wt/total_wt0
elif algo == 'Benchmark':
wts_dict[algo] = wts1
mwis, total_wt, _ = mlp_gurobi(adj_gK, wts_dict[algo])
# mwis, total_wt = greedy_search(adj_gK, wts1)
util_mtx_dict[algo][t] = 1.0
elif algo == 'GCNr-Dist':
# weight_samples += list(wts)
# wts0 = queue_mtx_dict[algo][:, t] + link_rates[:, t]
# wts0 = np.minimum(queue_mtx_dict[algo][:, t], link_rates[:, t])**1.5
# wts = wts0**1.7
wts_dict[algo] = wts1
# wts = emv(wts0, wts)
# wts_dict[algo] = emv(wts0, wts_dict[algo])
# mwis0, total_wt0 = local_greedy_search(adj, wts_dict[algo])
# mwis0, total_wt0 = greedy_search(adj_gK, wts1)
mwis0, total_wt0,_ = mlp_gurobi(adj_gK, wts1)
mwis, total_wt = dqn_agent.solve_mwis(adj_gK, wts_dict[algo], train=train, grd=total_wt0)
# mwis, total_wt, reward = dqn_agent.solve_mwis(adj, wts, train=train)
util_mtx_dict[algo][t] = total_wt/total_wt0
elif algo == 'DGCN-LGS-it':
wts_dict[algo] = wts1
mwis0, total_wt0, _ = mlp_gurobi(adj_gK, wts1)
mwis, total_wt = dqn_agent.solve_mwis_dit(adj_gK, wts_dict[algo], train=train, grd=total_wt0)
util_mtx_dict[algo][t] = total_wt / total_wt0
elif algo == 'DGCN-RS':
wts_dict[algo] = wts1
mwis0, total_wt0, _ = mlp_gurobi(adj_gK, wts1)
mwis, total_wt = dqn_agent.solve_mwis_rollout_wrap(adj_gK, wts_dict[algo], train=train, grd=total_wt0)
util_mtx_dict[algo][t] = total_wt / total_wt0
elif algo == 'CGCN-TSS':
wts_dict[algo] = wts1
# wts = emv(wts0, wts)
# wts_dict[algo] = emv(wts0, wts_dict[algo])
# mwis0, total_wt0 = local_greedy_search(adj, wts_dict[algo])
# mwis0, total_wt0 = greedy_search(adj_gK, wts1)
mwis0, total_wt0,_ = mlp_gurobi(adj_gK, wts1)
mwis, total_wt = rollout_agent.solve_mwis_iterative(adj_gK, wts_dict[algo])
# mwis, total_wt, reward = dqn_agent.solve_mwis(adj, wts, train=train)
util_mtx_dict[algo][t] = total_wt/total_wt0
else:
assert(1==2)
schedule_mv = np.array(list(mwis))
link_rates_ts = np.reshape(link_rates[t, :, :], nflows*n_ch, order='F')
link_rates_sh = link_rates_ts[schedule_mv]
schedule = schedule_mv % nflows
capacity = np.zeros(shape=(nflows,))
capacity[schedule] = link_rates_sh
dep_pkts_dict[algo][t, :] = np.minimum(queue_mtx_algo[:, 0], capacity)
queue_mtx_dict[algo][t, :] = queue_mtx_dict[algo][t, :] - dep_pkts_dict[algo][t, :]
# queue_mtx[queue_mtx[:, t] < 0, t] = 0
# wts = 1/(queue_mtx[:, t-1] + 1)
avg_q_dict = {}
med_q_dict = {}
for algo in algolist:
avg_queue_length_ts = np.mean(queue_mtx_dict[algo], axis=1)
med_queue_length_ts = np.median(queue_mtx_dict[algo], axis=1)
avg_queue_len_links = np.mean(queue_mtx_dict[algo], axis=0)
# pct_queue_len = np.percentile(queue_mtx.flatten(), 90)
# pct_tpt = np.percentile(dep_pkts.flatten(), 90)
# avg_tpt = np.mean(dep_pkts.flatten())
avg_q_dict[algo] = np.mean(avg_queue_length_ts)
med_q_dict[algo] = np.mean(med_queue_length_ts)
# avg_q_dict[algo] = np.mean(avg_queue_length_ts)
std_flow_q = np.std(avg_queue_len_links)
# res_list.append( {"name": algo,
# "queue": np.transpose(queue_mtx_dict[algo]),
# "depart": np.transpose(dep_pkts_dict[algo]),
# "seed": seed,
# "load": load,
# "avg_queue": avg_q_dict[algo],
# "std_flow_q": std_flow_q,
# "utility": np.transpose(util_mtx_dict[algo])
# })
res_df = res_df.append({'graph': seed,
'seed': treeseed,
'load': load,
'name': algo,
'avg_queue_len': avg_q_dict[algo],
'med_queue_len': med_q_dict[algo],
'avg_utility': np.nanmean(util_mtx_dict[algo]),
'avg_degree': avg_degree
}, ignore_index=True)
res_df.to_csv(output_csv)
# with open(wts_sample_file,'a') as f:
# f.write('{}'.format(weight_samples))
# if train:
# loss = dqn_agent.replay(199)
# if loss is None:
# loss = 1.0
# if not np.isnan(loss):
# dqn_agent.save(model_origin)
# else:
# dqn_agent.load(model_origin)
#
runtime = time.time() - time_start
if train:
# buffer.append(avg_util/greedy_avg_u)
if wt_sel=='random':
buffer.append(np.mean(util_mtx_dict['GCNr-Dist']))
else:
# buffer.append(avg_q_dict['GCNr-Dist']/avg_q_dict['Greedy'])
buffer.append(avg_q_dict['CGCN-TSS'] / avg_q_dict['Greedy'])
print("{}-{}: {}, load: {}, ".format(idx, i, netcfg, load),
# "q_median: {:.3f}, ".format(med_q_dict['GCNr-Dist']/med_q_dict['Greedy']),
# "q_mean: {:.3f}, ".format(avg_q_dict['GCNr-Dist']/avg_q_dict['Greedy']),
"q_median: {:.3f}, ".format(med_q_dict['CGCN-TSS']/med_q_dict['Greedy']),
"q_mean: {:.3f}, ".format(avg_q_dict['CGCN-TSS']/avg_q_dict['Greedy']),
# "q_median: {:.3f}, ".format(med_q_dict['GCNr-Dist']/med_q_dict['Benchmark']),
# "q_mean: {:.3f}, ".format(avg_q_dict['GCNr-Dist']/avg_q_dict['Benchmark']),
# "q_pct: {:.3f}, ".format(pct_queue_len/greedy_pct_q),
# "t_avg: {:.3f}, ".format(avg_tpt/greedy_avg_t),
"u_gdy: {:.3f}, ".format(np.mean(util_mtx_dict['Greedy'])),
# "u_gcn: {:.3f}, ".format(np.mean(util_mtx_dict['GCNr-Dist'])),
"u_gcn: {:.3f}, ".format(np.mean(util_mtx_dict['CGCN-TSS'])),
"run: {:.3f}s, loss: {:.5f}, ratio: {:.3f}, ".format(runtime, loss, np.mean(buffer)),
# "e: {:.4f}, m_val: {:.4f}, m_len: {}".format(rollout_agent.epsilon, np.mean(rollout_agent.reward_mem), len(rollout_agent.reward_mem))
)
else:
print("{}: {}, load: {}, ".format(i, netcfg, load),
"q_median: {:.3f}, ".format(med_q_dict['CGCN-TSS']),
"q_mean: {:.3f}, ".format(avg_q_dict['CGCN-TSS']),
# "q_median: {:.3f}, ".format(med_q_dict['CGCN-TSS']/med_q_dict['Benchmark']),
# "q_mean: {:.3f}, ".format(avg_q_dict['CGCN-TSS']/avg_q_dict['Benchmark']),
# "q_pct: {:.3f}, ".format(pct_queue_len/greedy_pct_q),
# "t_avg: {:.3f}, ".format(avg_tpt/greedy_avg_t),
# "u_gdy: {:.3f}, ".format(np.mean(util_mtx_dict['Greedy'])),
"u_gcn: {:.3f}, ".format(np.mean(util_mtx_dict['CGCN-TSS'])),
"run: {:.3f}".format(runtime)
# "runtime: {:.3f}, loss: {:.5f}, ratio: {:.3f}, ".format(runtime, loss, np.mean(buffer)),
# "epsilon: {:.4f}, mem_val: {:.4f}, mem_len: {}".format(dqn_agent.epsilon, np.mean(dqn_agent.reward_mem), len(dqn_agent.reward_mem))
)
# print("{}, load: {}, avg_queue: {:.3f}, greedy_q_avg: {:.3f}, avg_util: {:.3f}, runtime: {:.3f}"
# .format(netcfg, load, avg_q_dict['GCNr-Dist'], avg_q_dict['Greedy'], np.mean(util_mtx_dict['GCNr-Dist']), runtime))
# i += 1
# np.savetxt('./instance_209_q_gdy.csv', res_list[explen * i]['queue'], delimiter=',')
# np.savetxt('./instance_209_q_gcn.csv', res_list[explen * i + 1]['queue'], delimiter=',')
# np.savetxt('./instance_209_d_gdy.csv', res_list[explen * i]['depart'], delimiter=',')
# np.savetxt('./instance_209_d_gcn.csv', res_list[explen * i + 1]['depart'], delimiter=',')
# np.savetxt('./instance_209_r_gdy.csv', res_list[explen * i]['utility'], delimiter=',')
# np.savetxt('./instance_209_r_gcn.csv', res_list[explen * i + 1]['utility'], delimiter=',')
# if not train:
# np.savetxt('./instance_209_d_bmk.csv', res_list[explen * i + 2]['depart'], delimiter=',')
# np.savetxt('./instance_209_r_bmk.csv', res_list[explen * i + 2]['utility'], delimiter=',')
# np.savetxt('./instance_209_q_bmk.csv', res_list[explen * i + 2]['queue'], delimiter=',')
# savemat('./wireless/metric_vs_load_full.mat', {'data': res_list})
# with open('./wireless/metric_vs_load_full.json', 'w') as fout:
# json.dump(res_list, fout)
print("Done!")