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
50
Merged
Maxence Naud
requested to merge
scheduler_backprop
into
dev
1 year ago
Overview
0
Commits
27
Pipelines
8
Changes
50
Expand
0
0
Merge request reports
Compare
dev
version 6
e9e8c07e
11 months ago
version 5
e61adf11
11 months ago
version 4
aec3c3b8
11 months ago
version 3
7dff2de2
11 months ago
version 2
4e1f36cb
1 year ago
version 1
4e1f36cb
1 year ago
dev (base)
and
latest version
latest version
866ceb9a
27 commits,
11 months ago
version 6
e9e8c07e
26 commits,
11 months ago
version 5
e61adf11
25 commits,
11 months ago
version 4
aec3c3b8
12 commits,
11 months ago
version 3
7dff2de2
10 commits,
11 months ago
version 2
4e1f36cb
4 commits,
1 year ago
version 1
4e1f36cb
57 commits,
1 year ago
50 files
+
1051
−
344
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
50
Search (e.g. *.vue) (Ctrl+P)
include/aidge/backend/cpu/operator/AddImpl.hpp
+
6
−
5
Options
@@ -12,16 +12,17 @@
#ifndef AIDGE_CPU_OPERATOR_ADDIMPL_H_
#define AIDGE_CPU_OPERATOR_ADDIMPL_H_
#include
<cstddef>
// std::size_t
#include
<memory>
// std::unique_ptr, std::make_unique
#include
<string>
#include
<vector>
#include
"aidge/backend/OperatorImpl.hpp"
#include
"aidge/operator/Add.hpp"
#include
"aidge/utils/Registrar.hpp"
#include
"aidge/utils/Types.h"
#include
"aidge/backend/cpu/data/GetCPUPtr.h"
#include
<memory>
#include
<vector>
namespace
Aidge
{
// class Add_Op<2>;
// compute kernel registry for forward and backward
class
AddImplForward_cpu
@@ -33,7 +34,7 @@ class AddImplBackward_cpu
class
AddImpl_cpu
:
public
OperatorImpl
{
public:
AddImpl_cpu
(
const
Add_Op
&
op
)
:
OperatorImpl
(
op
)
{}
AddImpl_cpu
(
const
Add_Op
&
op
)
:
OperatorImpl
(
op
,
"cpu"
)
{}
static
std
::
unique_ptr
<
AddImpl_cpu
>
create
(
const
Add_Op
&
op
)
{
return
std
::
make_unique
<
AddImpl_cpu
>
(
op
);
Loading