Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
aidge_backend_cpu
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_backend_cpu
Merge requests
!142
You need to sign in or sign up before continuing.
feat_operator_convtranspose
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
feat_operator_convtranspose
feat_operator_convtranspose
into
dev
Overview
6
Commits
6
Pipelines
17
Changes
3
Merged
Grégoire Kubler
requested to merge
feat_operator_convtranspose
into
dev
1 month ago
Overview
6
Commits
6
Pipelines
17
Changes
3
Expand
Context
aidge_core!319 (merged)
aidge#235 (closed)
I strongly advise to look at the MR COMMIT BY COMMIT to understand the modification done here.
Edited
1 month ago
by
Grégoire Kubler
0
0
Merge request reports
Viewing commit
b8ab127c
Show latest version
3 files
+
64
−
47
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
b8ab127c
feat : refactored conv1D forward to use only DimSize_t
· b8ab127c
Grégoire Kubler
authored
2 months ago
include/aidge/backend/cpu/operator/ConvImpl.hpp
+
10
−
10
Options
@@ -26,16 +26,16 @@
namespace
Aidge
{
// Operator implementation entry point for the backend
using
Conv1D_Op
=
Conv_Op
<
1
>
;
using
ConvImpl1D_cpu
=
OperatorImpl_cpu
<
Conv_Op
<
1
>
,
void
(
const
std
::
array
<
DimSize_t
,
1
>
&
,
const
std
::
array
<
DimSize_t
,
1
>
&
,
const
std
::
array
<
DimSize_t
,
1
>
&
,
const
std
::
array
<
DimSize_t
,
3
>
&
,
DimSize_t
,
const
void
*
,
const
void
*
,
const
void
*
,
void
*
)
>
;
using
ConvImpl1D_cpu
=
OperatorImpl_cpu
<
Conv
1D
_Op
,
void
(
const
DimSize_t
&
,
const
DimSize_t
&
,
const
DimSize_t
&
,
const
std
::
array
<
DimSize_t
,
3
>
&
,
DimSize_t
,
const
void
*
,
const
void
*
,
const
void
*
,
void
*
)
,
using
Conv2D_Op
=
Conv_Op
<
2
>
;
using
ConvImpl2D_cpu
=
OperatorImpl_cpu
<
Conv_Op
<
2
>
,
Loading