-
Notifications
You must be signed in to change notification settings - Fork 0
/
escalonamento_cpu.py
154 lines (144 loc) · 5.92 KB
/
escalonamento_cpu.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
#%%
import numpy as np
import sys
import random as rd
class Fila:
def __init__(self,entrada):
self.lista = entrada
def getHead(self):
return self.lista[0]
def setHead(self,head):
self.lista[0] = head
def consume(self):
head = self.getHead()
self.lista = np.append(np.delete(self.lista,0,axis=0),[head],axis=0)
def removeZeros(self):
self.lista = np.delete(self.lista,np.where(self.lista[:,1]==0),axis=0)
def getAll(self):
return self.lista
class CPU:
def __init__(self):
self.entrada = []
count = 0
for l in sys.stdin:
chegada,duração = l.split(' ')
if l == '\n':
break
self.entrada.append([int(chegada),int(duração),1,count,int(duração)])
count+=1
self.entrada = np.array(self.entrada)
self.copy_entrada = self.entrada.copy()
self.error()
def error(self):
pass
def PRI(self):
EXECUTADOS = []
RETORNO_MEDIO,RESPOSTA_MEDIA,ESPERA_MEDIA = [],[],[]
INSTANTE = 0
self.entrada = self.entrada[self.entrada[:, 0].argsort()]
while(np.sum(self.entrada[:,1]) !=0):
prontos = self.entrada[np.where(self.entrada[:,0] <= INSTANTE)]
while(len(prontos)==0):
INSTANTE += 1
prontos = self.entrada[np.where(self.entrada[:,0] <= INSTANTE)]
indice_maior = np.argmax(prontos[:,2])
if self.entrada[indice_maior,3] not in EXECUTADOS:
RESPOSTA_MEDIA.append(INSTANTE-self.entrada[indice_maior,0])
EXECUTADOS.append(self.entrada[indice_maior,3])
# Executando
self.entrada[:,2] += 1
self.entrada[indice_maior,2] -= 2
self.entrada[indice_maior,1] -= 1
INSTANTE += 1
if self.entrada[indice_maior,1] == 0:
RETORNO_MEDIO.append(INSTANTE - self.entrada[indice_maior,0])
ESPERA_MEDIA.append(INSTANTE - self.entrada[indice_maior,0] - self.entrada[indice_maior,4])
self.entrada = np.delete(self.entrada,indice_maior,axis=0)
self.entrada = self.copy_entrada.copy()
return np.mean(RETORNO_MEDIO),np.mean(RESPOSTA_MEDIA),np.mean(ESPERA_MEDIA)
def LOTERIA(self):
EXECUTADOS = []
EXCLUIDOS = []
RETORNO_MEDIO,RESPOSTA_MEDIA,ESPERA_MEDIA = [],[],[]
INSTANTE = 0
while(np.sum(self.entrada[:,1]) !=0):
if not(any(self.entrada[:,0]<=INSTANTE)):
INSTANTE += 1
continue
valores_possiveis = self.entrada[np.where(self.entrada[:,0] <=INSTANTE),3]
escolhido = rd.choice(valores_possiveis[0])
indice = np.where(self.entrada[:,3] == escolhido)
if self.entrada[indice,3] not in EXECUTADOS:
RESPOSTA_MEDIA.append(INSTANTE-self.entrada[indice,0])
EXECUTADOS.append(self.entrada[indice,3])
# Executando
self.entrada[indice,1] -= 1
INSTANTE += 1
if self.entrada[indice,1] == 0:
RETORNO_MEDIO.append(INSTANTE - self.entrada[indice,0])
ESPERA_MEDIA.append(INSTANTE - self.entrada[indice,0] - self.entrada[indice,4])
EXCLUIDOS.append(self.entrada[indice,3])
self.entrada = np.delete(self.entrada,indice,axis=0)
self.entrada = self.copy_entrada.copy()
return np.mean(RETORNO_MEDIO),np.mean(RESPOSTA_MEDIA),np.mean(ESPERA_MEDIA)
def RoundRobin(self,quantum):
from graphs import GraphGenerate
EXECUTADOS = []
EXCLUIDOS = []
RETORNO_MEDIO,RESPOSTA_MEDIA,ESPERA_MEDIA = [],[],[]
#self.entrada = self.entrada[self.entrada[:, 0].argsort()]
fila_circular = Fila(self.entrada)
qtd = len(self.entrada)
QUANTUM = quantum
INSTANTE = 0
HISTORY = []
while(np.sum(fila_circular.getAll()[:,1]) !=0):
processo = fila_circular.getHead()
if processo[0] > INSTANTE:
fila_circular.consume()
processo_c = fila_circular.getHead()
is_ready = False
while(processo[3]!=processo_c[3]):
if processo_c[0]<INSTANTE:
is_ready = True
break
else:
fila_circular.consume()
processo_c = fila_circular.getHead()
if not(is_ready):
INSTANTE += 1
continue
else:
processo = processo_c
int_ini = processo[1]
if processo[1] >= QUANTUM:
processo[1] -= QUANTUM
else:
processo[1] = 0
int_fin = processo[1]
fila_circular.setHead(processo)
fila_circular.consume()
if processo[3] not in EXECUTADOS:
RESPOSTA_MEDIA.append(INSTANTE-processo[0])
EXECUTADOS.append(processo[3])
INSTANTE += abs(int_fin - int_ini)
if processo[1] == 0:
RETORNO_MEDIO.append(INSTANTE - processo[0])
ESPERA_MEDIA.append(INSTANTE - processo[0] - processo[4])
EXCLUIDOS.append(processo[3])
fila_circular.removeZeros()
HISTORY.append(list(processo)+[INSTANTE,abs(int_fin - int_ini)])
try:
GraphGenerate().graphCPU('RR',INSTANTE,HISTORY,qtd)
except:
pass
self.entrada = self.copy_entrada.copy()
return np.mean(RETORNO_MEDIO),np.mean(RESPOSTA_MEDIA),np.mean(ESPERA_MEDIA)
escalonador = CPU()
pri = escalonador.PRI()
lot = escalonador.LOTERIA()
rr = escalonador.RoundRobin(2)
print('PRI {:.2f} {:.2f} {:.2f}'.format(pri[0],pri[1],pri[2]))
print('LOT {:.2f} {:.2f} {:.2f}'.format(lot[0],lot[1],lot[2]))
print('RR {:.2f} {:.2f} {:.2f}'.format(rr[0],rr[1],rr[2]))
# %%