-
Olivier BICHLER authoredOlivier BICHLER authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
pybind_cpu.cpp 264 B
#include <pybind11/pybind11.h>
// Need to call this header to register every impl
#include "aidge/backend/cpu.hpp"
namespace py = pybind11;
namespace Aidge {
void init_Aidge(py::module& /*m*/){
}
PYBIND11_MODULE(aidge_backend_cpu, m) {
init_Aidge(m);
}
}