Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在某处读到 CUDA 中的固定内存是稀缺资源。固定内存的上限是多少?在windows中,在linux中?
固定内存只是系统中的物理 RAM,它被留出并且不允许被操作系统调出。因此,一旦固定,其他进程就无法使用该内存量(有效地减少了其他操作系统可用的内存池)。
因此,最大可固定内存取决于其他进程(其他应用程序、操作系统本身)正在竞争系统内存。在 Windows 或 Linux 中同时运行的进程(例如,它们本身是否正在固定内存)将决定在特定时间有多少内存可供您固定。