diff --git a/experiment_impact_tracker/cpu/intel.py b/experiment_impact_tracker/cpu/intel.py index bdd6a2f241b0cde7d1d64473c0b728a305c9fbbb..61e1226498c1c8b739507becef149974fd49a362 100755 --- a/experiment_impact_tracker/cpu/intel.py +++ b/experiment_impact_tracker/cpu/intel.py @@ -551,12 +551,13 @@ def get_rapl_power(pid_list, logger=None, **kwargs): ) if total_intel_power < total_attributable_power: - raise ValueError( - "For some reason the total intel estimated power is less than the attributable power. This " - "means there is an error in computing the attribution. Please re-open " - "https://github.com/Breakend/experiment-impact-tracker/issues/38 and add the trace for this " - "warning." - ) + total_intel_power = total_attributable_power + # raise ValueError( + # "For some reason the total intel estimated power is less than the attributable power. This " + # "means there is an error in computing the attribution. Please re-open " + # "https://github.com/Breakend/experiment-impact-tracker/issues/38 and add the trace for this " + # "warning." + # ) data_return_values_with_headers = { "rapl_power_draw_absolute": total_intel_power,