-
Notifications
You must be signed in to change notification settings - Fork 0
/
class_ClusteredManyCore.py
115 lines (85 loc) · 3.25 KB
/
class_ClusteredManyCore.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
# -*- coding: utf-8 -*-
class Core:
# <コンストラクタ>
def __init__(self):
'''
idle=True : このコアがアイドル状態
processing_node : 処理中のノード番号
remain_process : 残処理時間
'''
self.idle = True
self.processing_node = -1
self.remain_process = 0
# <メソッド>
# 処理を1秒進める
def advance_process(self, t):
if(self.idle == False):
self.remain_process-=1
if(self.remain_process == 0):
self.__init__()
class Cluster:
# <コンストラクタ>
def __init__(self, num_of_core):
'''
num_of_core : 1クラスタ内のコア数
self.core[] : クラスタ内にあるコア
'''
self.num_of_core = num_of_core
# コアを用意
self.core = []
for i in range(self.num_of_core):
self.core.append(Core())
# <メソッド>
# 処理を1秒進める
def advance_process(self, t):
for i in range(self.num_of_core):
self.core[i].advance_process(t)
# クラスタに空きがあればそのコア番号, そうでなければ-1
def idle_core(self):
for i in range(self.num_of_core):
if(self.core[i].idle == True):
return i
return -1
# 現在処理中のノードを返す
def processing_nodes(self):
list = []
for i in range(self.num_of_core):
if(self.core[i].idle == False):
list.append(self.core[i].processing_node)
return list
class ClusteredManyCoreProcesser:
# <コンストラクタ>
def __init__(self, num_of_cluster, num_of_core, inout_ratio):
'''
current_time : 現在時刻
num_of_cluster : プロセッサ内のクラスタ数
num_of_core : 1クラスタ内のコア数
inout_ratio : クラスタ外の通信時間とクラスタ内の通信時間の比率
cluster[] : このプロセッサ内にあるクラスタ
'''
self.current_time = 0
self.num_of_cluster = num_of_cluster
self.num_of_core = num_of_core
self.inout_ratio = inout_ratio
# プロセッサを形成
self.cluster = []
for i in range(self.num_of_cluster):
self.cluster.append(Cluster(self.num_of_core))
# <メソッド>
# 処理を1進める
def advance_process(self):
for i in range(self.num_of_cluster):
self.cluster[i].advance_process(self.current_time)
# 現在処理中のノードのリストを返す
def processing_nodes(self):
processing_nodes = []
for i in range(self.num_of_cluster):
list = self.cluster[i].processing_nodes()
processing_nodes = processing_nodes + list
return processing_nodes
# プロセッサに空きがあればTrue, そうでなければFalse
def empty_cluster(self):
for i in range(self.num_of_cluster):
if(self.cluster[i].idle_core() != -1):
return True
return False