Skip to content

Commit

Permalink
Fix progress bar flickering
Browse files Browse the repository at this point in the history
  • Loading branch information
berkayurun committed Sep 28, 2023
1 parent 866db7f commit b769c8a
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 @@ -702,9 +702,6 @@ def controller(
# Handlers are used for a graceful exit, in case of a signal
register_signal_handlers(clogger, queue_output, p_logger)

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 @@ -790,8 +787,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 @@ -804,7 +799,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 @@ -503,6 +503,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 @@ -528,6 +529,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 @@ -581,5 +583,6 @@ def hdf5collector(

del exp

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

0 comments on commit b769c8a

Please sign in to comment.