summaryrefslogtreecommitdiff
path: root/lib/utils.py
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2019-11-26 10:42:07 +0100
committerDaniel Friesel <daniel.friesel@uos.de>2019-11-26 10:42:07 +0100
commit5dbed828f25d1676251f26472a8279ff2367514a (patch)
treeff4402a771ad3f08cc7b832f7c9752d8899a24cf /lib/utils.py
parentcf056f82c413f320aaa6c816f5f0dce92e8a1775 (diff)
autopep8
Diffstat (limited to 'lib/utils.py')
-rw-r--r--lib/utils.py29
1 files changed, 21 insertions, 8 deletions
diff --git a/lib/utils.py b/lib/utils.py
index f040638..2e635a7 100644
--- a/lib/utils.py
+++ b/lib/utils.py
@@ -3,6 +3,7 @@ import re
arg_support_enabled = True
+
def vprint(verbose, string):
"""
Print `string` if `verbose`.
@@ -12,9 +13,10 @@ def vprint(verbose, string):
if verbose:
print(string)
+
def is_numeric(n):
"""Check if `n` is numeric (i.e., it can be converted to float)."""
- if n == None:
+ if n is None:
return False
try:
float(n)
@@ -22,19 +24,22 @@ def is_numeric(n):
except ValueError:
return False
+
def is_power_of_two(n):
"""Check if `n` is a power of two (1, 2, 4, 8, 16, ...)."""
- return n > 0 and (n & (n-1)) == 0
+ return n > 0 and (n & (n - 1)) == 0
+
def float_or_nan(n):
"""Convert `n` to float (if numeric) or NaN."""
- if n == None:
+ if n is None:
return np.nan
try:
return float(n)
except ValueError:
return np.nan
+
def soft_cast_int(n):
"""
Convert `n` to int (if numeric) or return it as-is.
@@ -42,13 +47,14 @@ def soft_cast_int(n):
If `n` is empty, returns None.
If `n` is not numeric, it is left unchanged.
"""
- if n == None or n == '':
+ if n is None or n == '':
return None
try:
return int(n)
except ValueError:
return n
+
def soft_cast_float(n):
"""
Convert `n` to float (if numeric) or return it as-is.
@@ -56,7 +62,7 @@ def soft_cast_float(n):
If `n` is empty, returns None.
If `n` is not numeric, it is left unchanged.
"""
- if n == None or n == '':
+ if n is None or n == '':
return None
try:
return float(n)
@@ -72,6 +78,7 @@ def flatten(somelist):
"""
return [item for sublist in somelist for item in sublist]
+
def parse_conf_str(conf_str):
"""
Parse a configuration string `k1=v1,k2=v2`... and return a dict `{'k1': v1, 'k2': v2}`...
@@ -84,6 +91,7 @@ def parse_conf_str(conf_str):
conf_dict[key] = soft_cast_float(value)
return conf_dict
+
def remove_index_from_tuple(parameters, index):
"""
Remove the element at `index` from tuple `parameters`.
@@ -92,7 +100,8 @@ def remove_index_from_tuple(parameters, index):
:param index: index of element which is to be removed
:returns: parameters tuple without the element at index
"""
- return (*parameters[:index], *parameters[index+1:])
+ return (*parameters[:index], *parameters[index + 1:])
+
def param_slice_eq(a, b, index):
"""
@@ -110,10 +119,11 @@ def param_slice_eq(a, b, index):
('foo', [1, 4]), ('foo', [2, 4]), 1 -> False
"""
- if (*a[1][:index], *a[1][index+1:]) == (*b[1][:index], *b[1][index+1:]) and a[0] == b[0]:
+ if (*a[1][:index], *a[1][index + 1:]) == (*b[1][:index], *b[1][index + 1:]) and a[0] == b[0]:
return True
return False
+
def match_parameter_values(input_param: dict, match_param: dict):
"""
Check whether one of the paramaters in `input_param` has the same value in `match_param`.
@@ -129,6 +139,7 @@ def match_parameter_values(input_param: dict, match_param: dict):
return False
return True
+
def by_name_to_by_param(by_name: dict):
"""
Convert aggregation by name to aggregation by name and parameter values.
@@ -151,6 +162,7 @@ def by_name_to_by_param(by_name: dict):
by_param[param_key]['param'].append(by_name[name]['param'][i])
return by_param
+
def filter_aggregate_by_param(aggregate, parameters, parameter_filter):
"""
Remove entries which do not have certain parameter values from `aggregate`.
@@ -180,8 +192,9 @@ def filter_aggregate_by_param(aggregate, parameters, parameter_filter):
for name in names_to_remove:
aggregate.pop(name)
+
class OptionalTimingAnalysis:
- def __init__(self, enabled = True):
+ def __init__(self, enabled=True):
self.enabled = enabled
self.wrapped_lines = list()
self.index = 1