↧
Answer by Hristo Iliev for NUMA: How to check in which part of RAM a C++...
Your question is answered here. I would only like to add some comments.Note that calling new [] does not actually allocate physical memory. On modern operating systems this only results in an anonymous...
View ArticleAnswer by Claudio for NUMA: How to check in which part of RAM a C++ array is...
Memory is virtualized through the MMU, so each process sees a memory space of size equal to 2^64. Within the process, addresses are virtual, so they are meaningless. There isn't any corrispondence...
View ArticleNUMA: How to check in which part of RAM a C++ array is allocated?
I have a server with 2 CPU's and 64GB of RAM, 32GB per CPU.I know that each CPU has it's own part of RAM, lets call them RAM1 and RAM2. I would like to make my program know on which RAM (RAM1 or RAM2)...
View Article