Index: utils/compare.py =================================================================== --- utils/compare.py +++ utils/compare.py @@ -154,7 +154,7 @@ def filter_failed(data, key='Exec'): return data.loc[data[key] == "pass"] -def filter_short(data, key='Exec_Time', threshold=0.6): +def filter_short(data, key='Exec_Time', threshold=1.0): return data.loc[data[key] >= threshold] def filter_same_hash(data, key='hash'):