Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
aidge_core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Cyril Moineau
aidge_core
Commits
00d9296e
Commit
00d9296e
authored
1 year ago
by
Olivier BICHLER
Browse files
Options
Downloads
Patches
Plain Diff
Fixed initial consumers list in Scheduler
parent
c1362663
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/scheduler/Scheduler.cpp
+14
-18
14 additions, 18 deletions
src/scheduler/Scheduler.cpp
with
14 additions
and
18 deletions
src/scheduler/Scheduler.cpp
+
14
−
18
View file @
00d9296e
...
...
@@ -41,31 +41,27 @@ void Aidge::SequentialScheduler::generateScheduling(bool verbose) {
// TODO: handle memory allocation in scheduler
// TODO: optimize memory usage
// setup initial producers list
// Setup initial potential consumers list:
// List of input nodes
std
::
set
<
std
::
shared_ptr
<
Node
>>
consumers
=
mGraphView
->
inputNodes
();
// Plus the list of nodes inside the graph connected to an inner producer
std
::
set
<
std
::
shared_ptr
<
Node
>>
producers
;
for
(
const
std
::
shared_ptr
<
Node
>&
nodePtr
:
mGraphView
->
getNodes
())
{
if
(
nodePtr
->
type
()
==
Producer_Op
::
Type
)
{
producers
.
insert
(
nodePtr
);
}
}
// add Data Input
// FIXME : should be changed when the real system for providing
// data is implemented
for
(
const
std
::
shared_ptr
<
Node
>&
nodePtr
:
mGraphView
->
inputNodes
())
{
for
(
const
auto
&
parentPtr
:
nodePtr
->
getParents
())
{
if
((
mGraphView
->
getNodes
()).
find
(
parentPtr
)
==
(
mGraphView
->
getNodes
()).
end
())
{
// Node not found in the graph, it's an outside producer
producers
.
insert
(
parentPtr
);
}
}
}
// setup consumer list
// std::set<std::shared_ptr<Node>> consumers = getConsumers(producers);
/* It may not be necessary to initialize producer */
std
::
set
<
std
::
shared_ptr
<
Node
>>
consumers
=
mGraphView
->
inputNodes
();
const
auto
producersConsumers
=
getConsumers
(
producers
);
consumers
.
insert
(
producersConsumers
.
begin
(),
producersConsumers
.
end
());
// Frozen consumers is used as a stop condition of the scheduling loop:
// The first time no consumer is runnable, frozenConsumers is updated to the
// current list of consumer. If after successive iterations, all with no
// runnable consumer, the list of consumer is again equal to frozenConsumers
// it means we are in cycle with no more scheduling update, a.k.a. a
// frozen state.
std
::
set
<
std
::
shared_ptr
<
Node
>>
frozenConsumers
;
do
{
// Check required producers
std
::
set
<
std
::
shared_ptr
<
Node
>>
requiredProducers
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment