forked from Zhangtaining/cell_research
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmultithread_cell_sorting_with_frozen_debug.py
More file actions
154 lines (127 loc) · 5.68 KB
/
multithread_cell_sorting_with_frozen_debug.py
File metadata and controls
154 lines (127 loc) · 5.68 KB
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 sys, getopt
from tkinter import *
import threading
import time
from modules.multithread.StatusProbe import StatusProbe
from modules.multithread.SelectionSortCell import SelectionSortCell
from modules.multithread.BubbleSortCell import BubbleSortCell
from modules.multithread.MergeSortCell import MergeSortCell
from modules.multithread.InsertionSortCell import InsertionSortCell
from modules.multithread.CellGroup import CellGroup, GroupStatus
from modules.multithread.MultiThreadCell import CellStatus
from visualization.CellImage import CellImage
from visualization.CellGroupImage import CellGroupImage
from analysis.utils import get_monotonicity
import random
import numpy as np
# VALUE_LIST = [28, 34, 6, 20, 7, 89, 34, 18, 29, 51]
#VALUE_LIST = range(20,0,-1)
def create_cells_within_one_group(value_list, threadLock, status_probe, cell_type, frozen_cell_number):
if len(value_list) == 0:
return []
left_boundary = (0, 1)
right_boundary = (len(value_list) - 1, 1)
cells = []
for i in range(0, len(value_list)):
cell = None
if cell_type == 'selection':
cell = SelectionSortCell(i + 1, value_list[i], threadLock, (i, 1), cells, left_boundary, right_boundary, status_probe, disable_visualization=True)
if cell_type == 'bubble':
cell = BubbleSortCell(i + 1, value_list[i], threadLock, (i, 1), cells, left_boundary, right_boundary, status_probe, disable_visualization=True)
if cell_type == 'insertion':
cell = InsertionSortCell(i + 1, value_list[i], threadLock, (i, 1), cells, left_boundary, right_boundary, status_probe, disable_visualization=True)
# if random.random() <= bubble_sort_percentage:
# cell = BubbleSortCell(i + 1, value_list[i], threadLock, (i, 1), cells, left_boundary, right_boundary, status_probe, disable_visualization=True)
# cell = InsertionSortCell(i + 1, value_list[i], threadLock, (i, 1), cells, left_boundary, right_boundary, status_probe, disable_visualization=True)
# else:
# cell = SelectionSortCell(i + 1, value_list[i], threadLock, (i, 1), cells, left_boundary, right_boundary, status_probe, disable_visualization=True)
cells.append(cell)
if cell_type == 'insertion':
cells[0].enable_to_move = True
period = 1000000000
start_count_down = 1000000000
cell_group = CellGroup(cells, cells, 0, left_boundary, right_boundary, GroupStatus.ACTIVE, threadLock, start_count_down, period)
for cell in cells:
cell.group = cell_group
for i in range(frozen_cell_number):
cell_index = random.randint(0, len(cells) - 1 )
cells[cell_index].set_cell_to_freeze()
print(cells[cell_index].value)
return cells, [cell_group]
def is_sorted(cells):
prev_cell = cells[0]
for c in cells:
if c.value < prev_cell.value:
return False
prev_cell = c
return True
def no_cells_should_move(cells):
for c in cells:
if c.status == CellStatus.SLEEP:
return False
if c.status == CellStatus.ACTIVE and c.should_move():
return False
return True
def print_status(cells):
print([{"value": c.value, "cell status": c.status, "ideal position": c.ideal_position, "current position": c.current_position} for c in cells])
def kill_all_thread(cells, groups):
for c in cells:
c.status = CellStatus.INACTIVE
for g in groups:
g.status = GroupStatus.MERGED
def activate(cells, cell_groups):
for cell in cells:
cell.start()
for group in cell_groups:
group.start()
def get_pass_in_args(argv):
cell_type = ""
try:
opts, args = getopt.getopt(argv, "h", ["cell_type="])
except getopt.GetoptError:
print("please specify cell type using '--cell_type='")
sys.exit(2)
for opt, arg in opts:
if opt == "-h":
print("multithread_cell_sorting.py --cell_type=<cell_type>")
sys.exit()
if opt == "--cell_type":
cell_type = arg
if not cell_type:
print("please specify cell type using '--cell_type='")
sys.exit(2)
return cell_type
def main(argv):
#cell_type = get_pass_in_args(argv)
sorting_list = [i for i in range(50)]
frozen_cell_num = 1
for i in range(50):
threadLock = threading.Lock()
random.shuffle(sorting_list)
print(f">>>>>>>>>>>>>>>>> Prepare cells to sort for insertion experiment {i + 1} <<<<<<<<<<<<<<<<<<<<")
status_probe = StatusProbe()
cells, cell_groups = create_cells_within_one_group(sorting_list, threadLock, status_probe, 'insertion', frozen_cell_num)
threadLock.acquire()
print("Activating cells...")
activate(cells, cell_groups)
threadLock.release()
# shape = canvas.create_oval(30 - 20, 30 - 20, 30 + 20, 30 + 20, fill="white")
# text = canvas.create_text(30, 30, text="3")
print("Start sorting......")
watch_dog = 5000
time_started = time.time()
while not no_cells_should_move(cells):
# # print_current_status(cells)
time.sleep(1)
threadLock.acquire()
kill_all_thread(cells, cell_groups)
threadLock.release()
if get_monotonicity(status_probe.sorting_steps[-1]) > 2:
print_status(get_monotonicity(status_probe.sorting_steps[-1]))
print(get_monotonicity(status_probe.sorting_steps[-1]))
# break
# if get_monotonicity(status_probe.sorting_steps[-1]) > 2:
# print(status_probe.sorting_steps[-1])
print(">>>>>>>>>>>>>>>>> Sorting complete, killed all threads. <<<<<<<<<<<<<<<<<<<<\n")
if __name__ == "__main__":
main(sys.argv[1:])