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
Iterations
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
Eclipse Projects
aidge
aidge_core
Commits
1434de9f
Commit
1434de9f
authored
1 year ago
by
Grégoire Kubler
Browse files
Options
Downloads
Patches
Plain Diff
chore : added debug print for nodes within getPriorProducersConsumers
parent
4f89ce4a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!105
version 0.2.0
,
!100
fix/scheduler_exec_time
Pipeline
#41563
failed
1 year ago
Stage: static_analysis
Stage: build
Stage: test
Stage: coverage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/scheduler/Scheduler.cpp
+2
-0
2 additions, 0 deletions
src/scheduler/Scheduler.cpp
with
2 additions
and
0 deletions
src/scheduler/Scheduler.cpp
+
2
−
0
View file @
1434de9f
...
@@ -570,7 +570,9 @@ Aidge::SequentialScheduler::PriorProducersConsumers Aidge::SequentialScheduler::
...
@@ -570,7 +570,9 @@ Aidge::SequentialScheduler::PriorProducersConsumers Aidge::SequentialScheduler::
PriorProducersConsumers
prior
;
PriorProducersConsumers
prior
;
IOIndex_t
inputIdx
=
0
;
IOIndex_t
inputIdx
=
0
;
std
::
cout
<<
*
node
<<
std
::
endl
;
for
(
const
auto
&
parent
:
node
->
inputs
())
{
for
(
const
auto
&
parent
:
node
->
inputs
())
{
std
::
cout
<<
"parent.first "
<<
*
parent
.
first
<<
std
::
endl
;
if
(
parent
.
first
&&
if
(
parent
.
first
&&
(
node
->
getOperator
()
->
getNbConsumedData
(
inputIdx
)
+
node
->
getOperator
()
->
getNbRequiredData
(
inputIdx
))
>
(
node
->
getOperator
()
->
getNbConsumedData
(
inputIdx
)
+
node
->
getOperator
()
->
getNbRequiredData
(
inputIdx
))
>
parent
.
first
->
getOperator
()
->
getNbProducedData
(
parent
.
second
))
parent
.
first
->
getOperator
()
->
getNbProducedData
(
parent
.
second
))
...
...
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