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
337c5229
Commit
337c5229
authored
1 year ago
by
Olivier BICHLER
Browse files
Options
Downloads
Patches
Plain Diff
Fixed issues
parent
04c4355c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/graph/GraphView.cpp
+4
-2
4 additions, 2 deletions
src/graph/GraphView.cpp
src/operator/Memorize.cpp
+9
-7
9 additions, 7 deletions
src/operator/Memorize.cpp
with
13 additions
and
9 deletions
src/graph/GraphView.cpp
+
4
−
2
View file @
337c5229
...
@@ -381,12 +381,14 @@ Aidge::GraphView::outputs() const {
...
@@ -381,12 +381,14 @@ Aidge::GraphView::outputs() const {
// Keep only the nodes connected at this output position that are outside the GraphView
// Keep only the nodes connected at this output position that are outside the GraphView
std
::
vector
<
std
::
pair
<
std
::
shared_ptr
<
Node
>
,
Aidge
::
IOIndex_t
>>
outsideOutputPos
;
std
::
vector
<
std
::
pair
<
std
::
shared_ptr
<
Node
>
,
Aidge
::
IOIndex_t
>>
outsideOutputPos
;
for
(
const
auto
&
output
:
outputPos
)
{
for
(
const
auto
&
output
:
outputPos
)
{
if
(
mNodes
.
find
(
output
.
first
)
==
mNodes
.
end
())
{
if
(
output
.
first
==
nullptr
||
mNodes
.
find
(
output
.
first
)
==
mNodes
.
end
())
{
outsideOutputPos
.
push_back
(
output
);
outsideOutputPos
.
push_back
(
output
);
}
}
}
}
outsideOutputs
.
push_back
(
outsideOutputPos
);
if
(
outputPos
.
empty
()
||
!
outsideOutputPos
.
empty
())
{
outsideOutputs
.
push_back
(
outsideOutputPos
);
}
}
}
}
}
return
outsideOutputs
;
return
outsideOutputs
;
...
...
This diff is collapsed.
Click to expand it.
src/operator/Memorize.cpp
+
9
−
7
View file @
337c5229
...
@@ -15,15 +15,17 @@
...
@@ -15,15 +15,17 @@
const
std
::
string
Aidge
::
Memorize_Op
::
Type
=
"Memorize"
;
const
std
::
string
Aidge
::
Memorize_Op
::
Type
=
"Memorize"
;
void
Aidge
::
Memorize_Op
::
computeOutputDims
()
{
void
Aidge
::
Memorize_Op
::
computeOutputDims
()
{
// Only require input #1 dims (initialization of the Memorize operator)
if
(
!
getInput
(
0
)
||
!
getInput
(
1
))
{
// Otherwise, forwardDims() won't converge!
AIDGE_THROW_OR_ABORT
(
std
::
runtime_error
,
"Every input should be associated with a Tensor"
);
bool
associated
=
(
nbInputs
()
>
0
);
// do not compute anything if no input
if
(
!
getInput
(
1
))
{
AIDGE_THROW_OR_ABORT
(
std
::
runtime_error
,
"Input #1 should be associated with a Tensor"
);
}
}
associated
&=
!
(
getInput
(
1
)
->
empty
());
if
(
associated
)
{
// Only require one of the input to have dims defined
// Otherwise, forwardDims() won't converge!
if
(
!
(
getInput
(
0
)
->
empty
()))
{
const
auto
expectedDims
=
getInput
(
0
)
->
dims
();
mOutputs
[
0
]
->
resize
(
expectedDims
);
}
else
if
(
!
(
getInput
(
1
)
->
empty
()))
{
const
auto
expectedDims
=
getInput
(
1
)
->
dims
();
const
auto
expectedDims
=
getInput
(
1
)
->
dims
();
mOutputs
[
0
]
->
resize
(
expectedDims
);
mOutputs
[
0
]
->
resize
(
expectedDims
);
}
}
...
...
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