I am trying to use the reinforcement learning framework in ns3-ai. I found that the size of variables (env, action) I put in the shared memory is fixed. For instance, I can only put 3 uint32_t variables in the shared memory, or else the following error appears:
Something wrong
Size of memory error(14 16)
cleaning
It requires me to put the exact same size of variables as required. One uint32_t equals to 4 bytes. And the available space is only 16 bytes. What if I want to put more variables in the shared memory? Is there a way to do it?
Thanks!