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
!39
Scheduler backprop
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Scheduler backprop
scheduler_backprop
into
dev
Overview
0
Commits
27
Pipelines
8
Changes
5
Merged
Maxence Naud
requested to merge
scheduler_backprop
into
dev
1 year ago
Overview
0
Commits
27
Pipelines
8
Changes
5
Expand
0
0
Merge request reports
Viewing commit
ac8554fd
Prev
Next
Show latest version
5 files
+
107
−
24
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
ac8554fd
Upd FC, Pow, Sqrt implementation arguments
· ac8554fd
Maxence Naud
authored
11 months ago
include/aidge/backend/cpu/operator/FCImpl.hpp
+
22
−
6
Options
@@ -26,13 +26,29 @@ namespace Aidge {
// compute kernel registry for forward and backward
class
FCImplForward_cpu
:
public
Registrable
<
FCImplForward_cpu
,
std
::
tuple
<
DataType
,
DataType
,
DataType
,
DataType
>
,
void
(
const
FC_Op
::
Attrs
&
,
const
DimSize_t
,
const
DimSize_t
,
const
void
*
,
const
void
*
,
const
void
*
,
void
*
)
>
{};
std
::
tuple
<
DataType
,
DataType
,
DataType
,
DataType
>
,
void
(
const
FC_Op
::
Attrs
&
,
const
DimSize_t
,
const
DimSize_t
,
const
void
*
,
const
void
*
,
const
void
*
,
void
*
)
>
{};
class
FCImplBackward_cpu
:
public
Registrable
<
FCImplBackward_cpu
,
std
::
tuple
<
DataType
,
DataType
,
DataType
,
DataType
>
,
void
(
const
FC_Op
::
Attrs
&
,
const
DimSize_t
,
const
DimSize_t
,
const
void
*
,
const
void
*
,
const
void
*
,
void
*
)
>
{};
std
::
tuple
<
DataType
,
DataType
,
DataType
,
DataType
>
,
void
(
const
FC_Op
::
Attrs
&
,
const
DimSize_t
,
const
DimSize_t
,
const
void
*
,
const
void
*
,
const
void
*
,
void
*
)
>
{};
class
FCImpl_cpu
:
public
OperatorImpl
{
public:
Loading