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
!98
Fix - v0.3.1
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix - v0.3.1
fix
into
main
Overview
0
Commits
5
Pipelines
2
Changes
5
Merged
Maxence Naud
requested to merge
fix
into
main
6 months ago
Overview
0
Commits
5
Pipelines
2
Changes
5
Expand
!95 (merged)
!97 (merged)
Edited
6 months ago
by
Maxence Naud
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
e46aaa1b
5 commits,
6 months ago
5 files
+
72
−
36
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
aidge_backend_cpu/unit_tests/test_scheduler.py
+
1
−
1
Options
@@ -17,12 +17,12 @@ class test_scheduler(unittest.TestCase):
input_node
=
aidge_core
.
Producer
(
aidge_core
.
Tensor
(
values
),
"
Input
"
)
relu
=
aidge_core
.
ReLU
()
input_node
.
add_child
(
relu
)
gv
=
aidge_core
.
GraphView
()
gv
.
add
(
relu
)
gv
.
add
(
input_node
)
input_node
.
add_child
(
relu
)
gv
.
set_datatype
(
aidge_core
.
dtype
.
int32
)
gv
.
set_backend
(
"
cpu
"
)
Loading