-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatm.py
47 lines (33 loc) · 916 Bytes
/
datm.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
import sys
import os
sys.path.insert(0, 'shared/')
sys.path.insert(0,'core/')
from base_write import *
from input import get_testing_frame
# shared base programs
from obj_apply import *
from obj_ex import *
from obj_counter import *
from obj_field import *
from obj_frame import *
# specific fem programs
from core_iter_cmd import core_cmd
os.system("rm rst/data/*")
os.system("rm rst/stash/*")
# get testing framework
testing_frame = get_testing_frame()
# writing heading based on framework
write_heading(testing_frame)
# get counter
cnt = get_counter()
start_standard = time.time()
########################
core_cmd(testing_frame,cnt)
########################
end_standard = time.time()
tt_standard = " time all _standard "+str(end_standard - start_standard )
writeall(tt_standard )
print (tt_standard )
x = counter.writeCumulativeS(cnt)
writeFinalCumulative(x)
writeFinalCumulative(tt_standard)