concretizer verbose: show progress in % too (#40654)

This commit is contained in:
Harmen Stoppels 2023-10-23 10:26:20 +02:00 committed by GitHub
parent a675156c70
commit 96548047f8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1518,11 +1518,14 @@ def _concretize_separately(self, tests=False):
tty.msg(msg) tty.msg(msg)
batch = [] batch = []
for i, concrete, duration in spack.util.parallel.imap_unordered( for j, (i, concrete, duration) in enumerate(
_concretize_task, args, processes=num_procs, debug=tty.is_debug() spack.util.parallel.imap_unordered(
_concretize_task, args, processes=num_procs, debug=tty.is_debug()
)
): ):
batch.append((i, concrete)) batch.append((i, concrete))
tty.verbose(f"[{duration:7.2f}s] {root_specs[i]}") percentage = (j + 1) / len(args) * 100
tty.verbose(f"{duration:6.1f}s [{percentage:3.0f}%] {root_specs[i]}")
sys.stdout.flush() sys.stdout.flush()
# Add specs in original order # Add specs in original order