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

Fix bad memSpace size during reallocation

parent 33d386e5
No related branches found
No related tags found
No related merge requests found
......@@ -491,17 +491,17 @@ Aidge::MemoryManager Aidge::Scheduler::generateMemory(bool incProducers, bool wr
const MemoryManager::MemoryPlane& memPlane
= (wrapAroundBuffer && wrapAroundSize > 0)
? (*wrapAroundMemPlane[outputIdx]) :
memManager.allocate(requiredSize.data, childs, stride, length, count);
memManager.allocate(size, childs, stride, length, count);
if (wrapAroundBuffer && wrapAroundSize > 0) {
memManager.reallocate(memPlane,
node, 0,
requiredSize.data, true, wrapAroundExtra, childs, stride, length, count);
size, true, wrapAroundExtra, childs, stride, length, count);
}
else {
memManager.reallocate(memPlane.memSpace,
node, memPlane.offset,
requiredSize.data, false, 0, childs, stride, length, count);
size, false, 0, childs, stride, length, count);
}
}
......
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