Skip to content
Snippets Groups Projects

Improve UI

Merged Maxence Naud requested to merge ui_parameters into dev
Files
7
/********************************************************************************
* 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