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
!114
Heaviside implementation
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Heaviside implementation
jeromeh/aidge_backend_cpu:heaviside-implementation
into
dev
Overview
18
Commits
8
Pipelines
24
Changes
5
Merged
Jerome Hue
requested to merge
jeromeh/aidge_backend_cpu:heaviside-implementation
into
dev
5 months ago
Overview
3
Commits
8
Pipelines
24
Changes
5
Expand
Context
CPU Implementation for the Heaviside operator.
0
0
Merge request reports
Compare
dev
version 21
b55118ef
3 months ago
version 20
12fdadac
3 months ago
version 19
ac8a6465
3 months ago
version 18
2c96cd6a
3 months ago
version 17
9b8999c0
3 months ago
version 16
2ab18fd1
3 months ago
version 15
b8fb4d71
3 months ago
version 14
3dd84cd9
3 months ago
version 13
95eb93c8
3 months ago
version 12
95eb93c8
3 months ago
version 11
f5dc35f7
3 months ago
version 10
bf41a06b
3 months ago
version 9
dd81b53d
3 months ago
version 8
d3ac3425
3 months ago
version 7
d3ac3425
3 months ago
version 6
962a569b
4 months ago
version 5
dc27a42b
4 months ago
version 4
192ef1c6
4 months ago
version 3
0de95e3e
5 months ago
version 2
b6646152
5 months ago
version 1
9b3ec13d
5 months ago
dev (base)
and
latest version
latest version
481818dc
8 commits,
3 months ago
version 21
b55118ef
8 commits,
3 months ago
version 20
12fdadac
9 commits,
3 months ago
version 19
ac8a6465
8 commits,
3 months ago
version 18
2c96cd6a
8 commits,
3 months ago
version 17
9b8999c0
8 commits,
3 months ago
version 16
2ab18fd1
8 commits,
3 months ago
version 15
b8fb4d71
8 commits,
3 months ago
version 14
3dd84cd9
7 commits,
3 months ago
version 13
95eb93c8
19 commits,
3 months ago
version 12
95eb93c8
19 commits,
3 months ago
version 11
f5dc35f7
18 commits,
3 months ago
version 10
bf41a06b
17 commits,
3 months ago
version 9
dd81b53d
16 commits,
3 months ago
version 8
d3ac3425
15 commits,
3 months ago
version 7
d3ac3425
3 commits,
3 months ago
version 6
962a569b
3 commits,
4 months ago
version 5
dc27a42b
3 commits,
4 months ago
version 4
192ef1c6
2 commits,
4 months ago
version 3
0de95e3e
2 commits,
5 months ago
version 2
b6646152
2 commits,
5 months ago
version 1
9b3ec13d
3 commits,
5 months ago
5 files
+
214
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
include/aidge/backend/cpu/operator/HeavisideImpl.hpp
0 → 100644
+
32
−
0
Options
/********************************************************************************
* Copyright (c) 2025 CEA-List
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
********************************************************************************/
#ifndef AIDGE_CPU_OPERATOR_HEAVISIDEIMPL_H_
#define AIDGE_CPU_OPERATOR_HEAVISIDEIMPL_H_
#include
<cstddef>
// std::size_t
#include
"aidge/backend/cpu/operator/OperatorImpl.hpp"
#include
"aidge/operator/Heaviside.hpp"
#include
"aidge/utils/Registrar.hpp"
#include
"aidge/utils/future_std/span.hpp"
namespace
Aidge
{
using
HeavisideImplCpu
=
OperatorImpl_cpu
<
Heaviside_Op
,
void
(
std
::
size_t
,
const
void
*
,
void
*
,
const
float
),
void
(
const
float
,
std
::
size_t
,
const
void
*
,
void
*
)
>
;
// Implementation entry point registration for operator Heaviside
REGISTRAR
(
Heaviside_Op
,
"cpu"
,
HeavisideImplCpu
::
create
);
}
// namespace Aidge
#endif // AIDGE_CPU_OPERATOR_HEAVISIDEIMPL_H_
Loading