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
cea8cbcd
Commit
cea8cbcd
authored
1 year ago
by
Maxence Naud
Browse files
Options
Downloads
Patches
Plain Diff
update 'GraphView::compile()' member function
parent
19e3e5c9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
include/aidge/graph/GraphView.hpp
+4
-1
4 additions, 1 deletion
include/aidge/graph/GraphView.hpp
python_binding/graph/pybind_GraphView.cpp
+1
-1
1 addition, 1 deletion
python_binding/graph/pybind_GraphView.cpp
src/graph/GraphView.cpp
+6
-6
6 additions, 6 deletions
src/graph/GraphView.cpp
with
11 additions
and
8 deletions
include/aidge/graph/GraphView.hpp
+
4
−
1
View file @
cea8cbcd
...
...
@@ -201,7 +201,10 @@ public:
* If not, add a Transpose Operator.
* 4 - Propagate Tensor dimensions through the consecutive Operators.
*/
void
compile
(
const
std
::
string
&
backend
=
"cpu"
,
const
Aidge
::
DataType
datatype
=
DataType
::
Float32
,
DeviceIdx_t
device
=
0
);
void
compile
(
const
std
::
string
&
backend
=
"cpu"
,
const
Aidge
::
DataType
datatype
=
DataType
::
Float32
,
DeviceIdx_t
device
=
0
,
const
std
::
vector
<
std
::
vector
<
DimSize_t
>>
dims
=
{});
/**
* @brief Compute dimensions of input/output Tensors for each Operator of the
...
...
This diff is collapsed.
Click to expand it.
python_binding/graph/pybind_GraphView.cpp
+
1
−
1
View file @
cea8cbcd
...
...
@@ -118,7 +118,7 @@ void init_GraphView(py::module& m) {
.
def
(
"get_nodes"
,
&
GraphView
::
getNodes
)
.
def
(
"get_node"
,
&
GraphView
::
getNode
,
py
::
arg
(
"node_name"
))
.
def
(
"forward_dims"
,
&
GraphView
::
forwardDims
,
py
::
arg
(
"dims"
)
=
std
::
vector
<
std
::
vector
<
DimSize_t
>>
())
.
def
(
"compile"
,
&
GraphView
::
compile
,
py
::
arg
(
"backend"
),
py
::
arg
(
"datatype"
),
py
::
arg
(
"device"
)
=
0
)
.
def
(
"compile"
,
&
GraphView
::
compile
,
py
::
arg
(
"backend"
),
py
::
arg
(
"datatype"
),
py
::
arg
(
"device"
)
=
0
,
py
::
arg
(
"dims"
)
=
std
::
vector
<
std
::
vector
<
DimSize_t
>>
()
)
.
def
(
"__call__"
,
&
GraphView
::
operator
(),
py
::
arg
(
"connectors"
))
.
def
(
"set_datatype"
,
&
GraphView
::
setDataType
,
py
::
arg
(
"datatype"
))
.
def
(
"set_backend"
,
&
GraphView
::
setBackend
,
py
::
arg
(
"backend"
),
py
::
arg
(
"device"
)
=
0
)
...
...
This diff is collapsed.
Click to expand it.
src/graph/GraphView.cpp
+
6
−
6
View file @
cea8cbcd
...
...
@@ -378,7 +378,7 @@ Aidge::GraphView::inputs(const std::string& name) const {
return
mNodeRegistry
.
at
(
name
)
->
inputs
();
}
void
Aidge
::
GraphView
::
compile
(
const
std
::
string
&
backend
,
const
Aidge
::
DataType
datatype
,
DeviceIdx_t
device
)
{
void
Aidge
::
GraphView
::
compile
(
const
std
::
string
&
backend
,
const
Aidge
::
DataType
datatype
,
DeviceIdx_t
device
,
const
std
::
vector
<
std
::
vector
<
DimSize_t
>>
dims
)
{
// Backend
// TODO: add Backend attribute to Operator
setBackend
(
backend
,
device
);
...
...
@@ -388,7 +388,7 @@ void Aidge::GraphView::compile(const std::string& backend, const Aidge::DataType
// Data Format
// TODO: check actual parent output data format and the needed one. Add a Transpose Operator if necessary
// Forward dimensions
forwardDims
();
forwardDims
(
dims
);
}
void
Aidge
::
GraphView
::
forwardDims
(
const
std
::
vector
<
std
::
vector
<
Aidge
::
DimSize_t
>>
dims
)
{
...
...
@@ -913,14 +913,14 @@ bool Aidge::GraphView::replace(const std::shared_ptr<GraphView>& oldGraph, const
// keep in memory every node related to the node to replace :
// Parent
for
(
std
::
size_t
i
=
0
;
i
<
oldOIn
.
size
();
++
i
)
{
std
::
pair
<
NodePtr
,
IOIndex_t
>
inputParent
=
std
::
pair
<
NodePtr
,
IOIndex_t
>
inputParent
=
oldOIn
[
i
].
first
->
input
(
oldOIn
[
i
].
second
);
inputParents
[
i
]
=
inputParent
;
// inputParent.first -> addChild(newOI[i].first, inputParent.second, newOI[i].second);
}
// Children
for
(
std
::
size_t
i
=
0
;
i
<
oldOOut
.
size
();)
{
std
::
vector
<
std
::
pair
<
std
::
shared_ptr
<
Aidge
::
Node
>
,
Aidge
::
IOIndex_t
>>
outputChild
=
std
::
vector
<
std
::
pair
<
std
::
shared_ptr
<
Aidge
::
Node
>
,
Aidge
::
IOIndex_t
>>
outputChild
=
oldOOut
[
i
].
first
->
output
(
oldOOut
[
i
].
second
);
if
(
outputChild
.
empty
())
{
outputChildren
[
i
]
=
std
::
pair
<
std
::
shared_ptr
<
Node
>
,
IOIndex_t
>
({
nullptr
,
gk_IODefaultIndex
});
...
...
@@ -983,7 +983,7 @@ bool Aidge::GraphView::replace(const std::shared_ptr<GraphView>& oldGraph, const
for
(
std
::
size_t
i
=
0
;
i
<
oldOIn
.
size
();
++
i
)
{
if
(
inputParents
[
i
].
first
)
{
inputParents
[
i
].
first
->
addChild
(
outputChildren
[
i
].
first
,
inputParents
[
i
].
second
,
outputChildren
[
i
].
second
);
}
}
}
}
else
if
((
oldOIn
.
size
()
==
1
)
&&
(
inputParents
[
0
].
first
))
{
...
...
@@ -1259,7 +1259,7 @@ void Aidge::GraphView::updateInputsOutputsDelete(std::shared_ptr<Node> deletedNo
if
(
deletedNode
==
mRootNode
)
{
const
std
::
pair
<
std
::
vector
<
NodePtr
>
,
size_t
>
ranked_nodes
=
getRankedNodes
();
if
(
ranked_nodes
.
second
==
0
||
ranked_nodes
.
first
.
size
()
<=
1
)
{
{
mRootNode
=
nullptr
;
}
else
{
// The new root node will be the second node in the order of ranked nodes
...
...
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