Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
fluiddyn
transonic
Commits
d7ab9dd815d8
Commit
439bcaf7
authored
Dec 11, 2020
by
Pierre Augier
Browse files
Fix a minor mistake calling progress.update (should be `completed`).
See
!81 (comment 147251)
parent
3f0338ef4e19
Pipeline
#14448
passed with stage
in 10 minutes and 38 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
transonic/compiler.py
View file @
d7ab9dd8
...
...
@@ -105,7 +105,7 @@ class SchedulerPopen:
for
process
in
self
.
processes
if
process
.
is_alive_root
()
]
self
.
progress
.
update
(
task
,
advance
=
total
-
len
(
self
.
processes
))
self
.
progress
.
update
(
task
,
completed
=
total
-
len
(
self
.
processes
))
mpi
.
barrier
(
timeout
=
None
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment