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
!86
Update README.md
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Update README.md
jeromeh/aidge_backend_cpu:readme
into
dev
Overview
2
Commits
2
Pipelines
3
Changes
1
Merged
Jerome Hue
requested to merge
jeromeh/aidge_backend_cpu:readme
into
dev
7 months ago
Overview
2
Commits
2
Pipelines
3
Changes
1
Expand
Context
Fix
#23 (closed)
.
Modified files
README.md
0
0
Merge request reports
Compare
dev
dev (base)
and
latest version
latest version
45011c4d
2 commits,
7 months ago
1 file
+
8
−
20
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
README.md
+
8
−
20
Options
@@ -29,27 +29,15 @@ pip install . -v
@@ -29,27 +29,15 @@ pip install . -v
### Standard C++ Compilation
### Standard C++ Compilation
You will need to compile first the Core library before compiling the CPU one.
You will need to compile and install the
[
Core Library
](
https://gitlab.eclipse.org/eclipse/aidge/aidge_core
)
before compiling the CPU one.
The makefile is designed to do it for you.
To only compile the CPU library, run
Once this has been done, you'll need run CMake with the
```
`CMAKE_INSTALL_PREFIX:PATH`
flag, in order to indicate to CMake where
make cpu_only
`aidge_core`
has been installed :
```
```
sh
cmake
-DCMAKE_INSTALL_PREFIX
:PATH
=
$(
path_to_install_folder
)
$(
CMAKE PARAMETERS
)
$(
projet_root
)
To compile the CPU library + the associated unitary tests, run
make all
```
make cpu_tests
```
```
To compile the CPU library with the python binding, run
More detailed information is available in the
[
Aidge User Guide
](
https://eclipse.dev/aidge/source/GetStarted/install.html
)
```
make cpu_with_pybind
```
Important: this command can also be run with
`make`
.
To compile the CPU library with the python binding + the associated unitary tests, run
```
make cpu_with_pybind_tests
```
Loading