Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
aidge_backend_cuda
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_cuda
Merge requests
!29
Improve UI
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Improve UI
ui_parameters
into
dev
Overview
0
Commits
4
Pipelines
4
Changes
7
Merged
Maxence Naud
requested to merge
ui_parameters
into
dev
11 months ago
Overview
0
Commits
4
Pipelines
4
Changes
7
Expand
See
aidge_core!145 (merged)
0
0
Merge request reports
Compare
dev
version 2
f17da944
10 months ago
version 1
07a40026
11 months ago
dev (base)
and
latest version
latest version
f075c56e
4 commits,
10 months ago
version 2
f17da944
3 commits,
10 months ago
version 1
07a40026
1 commit,
11 months ago
7 files
+
56
−
45
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
Search (e.g. *.vue) (Ctrl+P)
python_binding/pybind_backend_cuda.cpp
+
13
−
2
Options
/********************************************************************************
* Copyright (c) 2023 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
*
********************************************************************************/
#include
<pybind11/pybind11.h>
// Need to call this header to register every impl
#include
"aidge/backend/cuda.hpp"
namespace
py
=
pybind11
;
namespace
Aidge
{
void
init_cuda_sys_info
(
py
::
module
&
m
);
@@ -15,4 +26,4 @@ void init_Aidge(py::module& m){
PYBIND11_MODULE
(
aidge_backend_cuda
,
m
)
{
init_Aidge
(
m
);
}
}
}
// namespace Aidge
Loading