-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspeed_test.py
67 lines (60 loc) · 2.22 KB
/
speed_test.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
import copy
import cProfile
import json
import pstats
import time
from pathlib import Path
import pandas as pd
import NO_run
from NO_constants import VERSION_NUMBER as VERSION_NUMBER
if __name__ == "__main__":
directory_str = "C:\\Simulations\\SpeedTest"
ses_output_list = [
directory_str + '\\normal.prn'
]
ses_output_str = [
'C:/Simulations/SpeedTest/coolpipe.OUT',
'C:/Simulations/SpeedTest/DemoLargeSI.OUT',
'C:/Simulations/SpeedTest/siinfern.OUT',
'C:/Simulations/SpeedTest/sinorm.OUT',
'C:/Simulations/SpeedTest/Test01.OUT',
'C:/Simulations/SpeedTest/Test02R01.OUT',
'C:/Simulations/SpeedTest/Test03.OUT',
'C:/Simulations/SpeedTest/Test04.OUT',
'C:/Simulations/SpeedTest/Test05.OUT',
'C:/Simulations/SpeedTest/Test06.OUT',
'C:/Simulations/SpeedTest/Test08.OUT'
]
settings = {
'ses_output_str': ses_output_str,
'visio_template': '',
'results_folder_str': None,
'simtime': -1,
'conversion': '',
'control': 'First',
'output': ['Excel', '', '', '', '', '', '', '', '']
}
wall_time_dict = dict()
for name in settings["ses_output_str"]:
# Create individual setting to post process each file
single_settings = copy.copy(settings)
single_settings["ses_output_str"] = [name]
path_name = Path(name)
folder = str(path_name.parent)
# Start time and profile
prof = cProfile.Profile()
prof.enable()
start_post_processing = time.perf_counter()
NO_run.single_sim(single_settings)
end_post_processing = time.perf_counter()
prof.disable()
# Record data for post processing
wall_time = end_post_processing - start_post_processing
wall_time_dict[path_name.name]=wall_time
prof_name = folder+'\\'+VERSION_NUMBER+'\\'+str(path_name.stem)+'.prof'
prof.dump_stats(prof_name)
print('hello world')
df_wall_time_dict = pd.DataFrame.from_dict(wall_time_dict, orient='index', columns=[VERSION_NUMBER])
folder = str(path_name.parent)
save_path = folder + '\\' + VERSION_NUMBER + '.xlsx'
df_wall_time_dict.to_excel(save_path)