-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathComparator.py
56 lines (46 loc) · 1.9 KB
/
Comparator.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
'''
Created on Apr 18, 2017
@author: dquigley
'''
import jsonpickle
from PerfUtil import PerfUtil
class Comparator(object):
'''
classdocs
'''
def __init__(self, first, second):
"""
TODO: for now assume that the summaries share
some keys but are not necessarily equal. Also
for each script key we will only compare configs
that are present in both
"""
first_data = first.read()
second_data = second.read()
self.first_summary = jsonpickle.decode(first_data)
self.second_summary = jsonpickle.decode(second_data)
def compare(self):
score = 0
joint_keys = set(self.first_summary.keys()).intersection(set(self.second_summary.keys()))
for key in joint_keys:
pairs = []
"""
TODO: This is stupid. I really need to make the configs hashable so
they can be hashed and that hash used as a key in a dictionary.
Even if this is just concatenating the important values. This
n^2 search of the lists for matching pairs is just stupid when
the dictionary class can do it on its own if I just implement
rich equality comparison.
"""
for first_config in self.first_summary[key]:
for second_config in self.second_summary[key]:
if (
first_config.sync == second_config.sync and
first_config.iosize == second_config.iosize and
first_config.threads == second_config.threads
):
pairs.append((first_config, second_config))
break
for pair in pairs:
score += pair[0].compare(pair[1])
return PerfUtil.normalize(score)