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
Merge requests
!319
feat_operator_convtranspose
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
feat_operator_convtranspose
feat_operator_convtranspose
into
dev
Overview
1
Commits
10
Pipelines
18
Changes
18
Merged
Grégoire Kubler
requested to merge
feat_operator_convtranspose
into
dev
2 months ago
Overview
1
Commits
10
Pipelines
18
Changes
18
Expand
Context
issue :
aidge#235 (closed)
ADDED :
feat : [ADD] PaddedConvTranspose operator
feat : [ADD] convtranspose operator
feat : added getDataType() function to OperatorTensor
feat : approxEqual, better error checking & error messages - replaced tensor->size by tensor->dims comparison - replaced fmt::print by log::error - replaced assert with AIDGE_ASSERT
FIXES :
fix : Expand shape input was set as Param instead of Data
fix : missing header in Types.h
CHORES :
chore : [DOC] added pybind documentation to graphview.compile
Conv
feat : [Conv] added check to ensure dilation & stride attributes values are strictly positive
fix : [Conv] added check to ensure that dilation & stride values were all >= 1
better warning message for conv operator
chore : [Conv] updated the method for attribute accession to ease code reading
fix : [Conv] added check to ensure that dilation & stride values were all >= 1 & better warning message for conv operator constructor
chore : [Conv] updated the method for attribute accession to ease code reading
Edited
4 weeks ago
by
Grégoire Kubler
0
0
Merge request reports
Compare
dev
version 16
11f69175
4 weeks ago
version 15
a0af78e0
4 weeks ago
version 14
abfa66a2
1 month ago
version 13
d76a13f6
1 month ago
version 12
36149f7a
1 month ago
version 11
8cf433ab
1 month ago
version 10
b6c5f671
1 month ago
version 9
df9523c2
1 month ago
version 8
df9523c2
1 month ago
version 7
ec1195f2
1 month ago
version 6
53907fa0
1 month ago
version 5
c1e87bec
1 month ago
version 4
828b6dcb
1 month ago
version 3
8dd047c2
1 month ago
version 2
20562f14
2 months ago
version 1
20562f14
2 months ago
dev (base)
and
latest version
latest version
0e89cde0
10 commits,
4 weeks ago
version 16
11f69175
10 commits,
4 weeks ago
version 15
a0af78e0
8 commits,
4 weeks ago
version 14
abfa66a2
8 commits,
1 month ago
version 13
d76a13f6
7 commits,
1 month ago
version 12
36149f7a
8 commits,
1 month ago
version 11
8cf433ab
7 commits,
1 month ago
version 10
b6c5f671
7 commits,
1 month ago
version 9
df9523c2
6 commits,
1 month ago
version 8
df9523c2
6 commits,
1 month ago
version 7
ec1195f2
6 commits,
1 month ago
version 6
53907fa0
6 commits,
1 month ago
version 5
c1e87bec
6 commits,
1 month ago
version 4
828b6dcb
6 commits,
1 month ago
version 3
8dd047c2
8 commits,
1 month ago
version 2
20562f14
12 commits,
2 months ago
version 1
20562f14
175 commits,
2 months ago
18 files
+
1299
−
37
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
18
Search (e.g. *.vue) (Ctrl+P)
include/aidge/graph/GraphView.hpp
+
1
−
1
Options
@@ -239,7 +239,7 @@ public:
* 3 - Assert data format (NCHW, NHWC, ...) of each Operator's input Tensor is
* compatible with the selected kernel.
* If not, add a Transpose Operator.
* 4 - Propagate Tensor dimensions through the consecutive Operators.
* 4 - Propagate Tensor dimensions through the consecutive Operators
(also named forward dims)
.
*/
void
compile
(
const
std
::
string
&
backend
=
"cpu"
,
const
Aidge
::
DataType
datatype
=
DataType
::
Float32
,
Loading