Skip to content

Commit

Permalink
Fix progress bar flickering
Browse files Browse the repository at this point in the history
  • Loading branch information
berkayurun authored and lukasauer committed Oct 16, 2023
1 parent 6dbc702 commit 055a026
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
6 changes: 0 additions & 6 deletions controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -701,9 +701,6 @@ def controller(
# Handlers are used for a graceful exit, in case of a signal
register_signal_handlers()

pbar = tqdm(
total=len(faultlist), desc="Simulating faults", disable=not len(faultlist)
)
itter = 0
while 1:
if stop_signal_received.value == 1:
Expand Down Expand Up @@ -788,8 +785,6 @@ def controller(
# Find finished processes
p["process"].join(timeout=0)
if p["process"].is_alive() is False:
# Update the progress bar
pbar.update(1)
# Recalculate moving average
p_time_list.append(current_time - p["start_time"])
len_p_time_list = len(p_time_list)
Expand All @@ -802,7 +797,6 @@ def controller(
break

clogger.debug("{} experiments remaining in queue".format(queue_output.qsize()))
pbar.close()
p_logger.join()

clogger.debug("Done with qemu and logger")
Expand Down
3 changes: 3 additions & 0 deletions hdf5logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -506,6 +506,7 @@ def hdf5collector(
):
n._f_remove(recursive=True)

pbar = tqdm(total=num_exp, desc="Simulating faults", disable=not num_exp)
while num_exp > 0 or log_goldenrun or log_pregoldenrun or log_config:
if stop_signal.value == 1:
break
Expand All @@ -531,6 +532,7 @@ def hdf5collector(
)
)
num_exp = num_exp - 1
pbar.update(1)
elif exp["index"] == -2 and log_pregoldenrun:
if "Pregoldenrun" in f.root:
raise ValueError("Pregoldenrun already exists!")
Expand Down Expand Up @@ -584,5 +586,6 @@ def hdf5collector(

del exp

pbar.close()
f.close()
logger.debug("Data Logging done")

0 comments on commit 055a026

Please sign in to comment.