[RFC] Should bank-aware
memory allocation scheme be enforcing that every buffer fits into a bank?
#2192
erwei-xilinx
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
In
aiecc.py
, we have two modes in the--alloc-scheme
option, thebasic-sequential
andbank-aware
(default). Thebank-aware
mode currently throws an error as long as any buffer is bigger than the size of one single memory bank. On the other hand,basic-sequential
shall give a valid memory map by leveraging multiple banks.Therefore, the
bank-aware
mode sounds more like a "bank-enforced" mode to me. I wonder if it would make sense to havebank-aware
fall back tobasic-sequential
for such cases? This might be helpful for new users considering thatbank-aware
mode is the default mode for now.Beta Was this translation helpful? Give feedback.
All reactions