I'm working on a project that generates roughly between 13x512 values in which I compare at run-time. So the program outflow will be sort of as follows:
- Program executes
- Extracts (1) 12x512
- Extracts (2) 12x512
- Compares (1) to (2)
- Extract (3)
- Compares (3) to (2) (1)
The problem is, I don't know whether or not the quickest method would be to store the extracted values inside a text file and then read them in, or, just store inside memory and if I am storing inside memory, is there a quick way to access these? Such as memory mapping?
Thanks