-
Notifications
You must be signed in to change notification settings - Fork 536
Added compatibility for same time delta nodes #1477
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
3ff01a2
395b60a
220b9af
d49ed0b
604fff3
cff9393
35f2d47
f9c1092
748bce3
c898148
5c276b5
2c22093
e1c8593
25d6341
ba90842
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -262,7 +262,6 @@ def run(self, graph, config, updatehash=False): | |
| if toappend: | ||
| self.pending_tasks.extend(toappend) | ||
| num_jobs = len(self.pending_tasks) | ||
| logger.debug('Number of pending tasks: %d' % num_jobs) | ||
| if num_jobs < self.max_jobs: | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This trace appeared too often, maybe it's ok to remove it. But I ask @satra first. |
||
| self._send_procs_to_workers(updatehash=updatehash, | ||
| graph=graph) | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -219,9 +219,9 @@ def _send_procs_to_workers(self, updatehash=False, graph=None): | |
| jobids = sorted(jobids, | ||
| key=lambda item: (self.procs[item]._interface.estimated_memory_gb, | ||
| self.procs[item]._interface.num_threads)) | ||
|
|
||
| logger.debug('Free memory (GB): %d, Free processors: %d', | ||
| free_memory_gb, free_processors) | ||
| if len(jobids) > 0: | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think @satra protected this trace printing with the |
||
| logger.debug('Free memory (GB): %d, Free processors: %d', | ||
| free_memory_gb, free_processors) | ||
|
|
||
| # While have enough memory and processors for first job | ||
| # Submit first job on the list | ||
|
|
@@ -304,5 +304,3 @@ def _send_procs_to_workers(self, updatehash=False, graph=None): | |
| self.pending_tasks.insert(0, (tid, jobid)) | ||
| else: | ||
| break | ||
|
|
||
| logger.debug('No jobs waiting to execute') | ||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe disable the
runtime_profilehere?