Skip to content
Snippets Groups Projects
Commit e19b1c89 authored by Vincent Templier's avatar Vincent Templier
Browse files

Fix bad attribute name for MemSpace

parent 83ed58bc
No related branches found
No related tags found
2 merge requests!1190.2.1,!112Add python binding for MemoryManager
Pipeline #44435 passed
......@@ -41,7 +41,7 @@ void init_MemoryManager(py::module& m)
unsigned int, unsigned int, unsigned int>(),
py::arg("mem_space"), py::arg("clock"), py::arg("offset"),
py::arg("size"), py::arg("stride"), py::arg("length"), py::arg("count"))
.def_readwrite("mem_space", &MemoryManager::MemoryPlane::mem_space)
.def_readwrite("mem_space", &MemoryManager::MemoryPlane::memSpace)
.def_readwrite("allocated", &MemoryManager::MemoryPlane::allocated)
.def_readwrite("offset", &MemoryManager::MemoryPlane::offset)
.def_readwrite("size", &MemoryManager::MemoryPlane::size)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment