I need to allocate an array in FPGA of 20 elements, each of size 323 bits, but don't know if my fpga memory can handle this size.
I am using an FPGA Stratix 3. I hav tried looking up on the intel website : https://www.intel.com/content/www/us/en/programmable/products/boards_and_kits/dev-kits/altera/kit-siii-host.html, but i couldn't understand exactly which part described the memory size.
I might have 2 ways to do it : either allocate an array of 20 elements of 323 (= 17*19) bits, or a matrix of 20*19 elements of 17 bits each (which means 20*19 variables). But i don't know which way is better. Would you have any recommendations ?