blob: a7b0352895e68347dab23240d5c78b91f5ca5acb (
plain)
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
|
import os
import json
import pickle
import datetime
intmem_copy = os.popen("cat Intmem | grep 'BatchRun Copy' | awk '{print $4}'").read().rstrip()
intmem_scale = os.popen("cat Intmem | grep 'BatchRun Scale' | awk '{print $4}'").read().rstrip()
intmem_add = os.popen("cat Intmem | grep 'BatchRun Add' | awk '{print $4}'").read().rstrip()
intmem_triad = os.popen("cat Intmem | grep 'BatchRun Triad' | awk '{print $4}'").read().rstrip()
intmem_average = os.popen("cat Intmem | grep 'BatchRun AVERAGE' | awk '{print $4}'").read().rstrip()
print intmem_copy
print intmem_average
floatmem_copy = os.popen("cat Floatmem | grep 'BatchRun Copy' | awk '{print $4}'").read().rstrip()
floatmem_scale = os.popen("cat Floatmem | grep 'BatchRun Scale' | awk '{print $4}'").read().rstrip()
floatmem_add = os.popen("cat Floatmem | grep 'BatchRun Add' | awk '{print $4}'").read().rstrip()
floatmem_triad = os.popen("cat Floatmem | grep 'BatchRun Triad' | awk '{print $4}'").read().rstrip()
floatmem_average = os.popen("cat Floatmem | grep 'BatchRun AVERAGE' | awk '{print $4}'").read().rstrip()
print floatmem_copy
print floatmem_average
hostname = os.popen("hostname").read().rstrip()
time_stamp = str(datetime.datetime.utcnow().isoformat())
os.system("mv Intmem " + hostname + "-" + time_stamp + ".log")
os.system("cp Floatmem >> " + hostname + "-" + time_stamp + ".log")
result = {};
result['1. INTmem bandwidth'] = {};
result['1. INTmem bandwidth']['1. Copy (MB/s)'] = [intmem_copy]
result['1. INTmem bandwidth']['2. Add (MB/s)'] = [intmem_add]
result['1. INTmem bandwidth']['3. Scale (MB/s)'] = [intmem_scale]
result['1. INTmem bandwidth']['4.Triad (MB/s)']= [intmem_triad]
result['1. INTmem bandwidth']['5. Average (MB/s)'] = [intmem_average]
result['2. FLOATmem bandwidth'] = {};
result['2. FLOATmem bandwidth']['1.Copy (MB/s)']=[floatmem_copy]
result['2. FLOATmem bandwidth']['2.Add (MB/s)']=[floatmem_add]
result['2. FLOATmem bandwidth']['3.Scale (MB/s)']=[floatmem_scale]
result['2. FLOATmem bandwidth']['4.Triad (MB/s)']=[floatmem_triad]
result['2. FLOATmem bandwidth']['4.Copy (MB/s)']=[floatmem_average]
with open('./result_temp', 'w+') as result_file:
pickle.dump(result, result_file)
|