Beispiel #1
0
        public NvGpuVmm(AMemory Memory)
        {
            this.Memory = Memory;

            Cache = new NvGpuVmmCache();

            PageTable = new long[PTLvl0Size][];
        }
Beispiel #2
0
        public NvGpuVmm(AMemory Memory)
        {
            this.Memory = Memory;

            Maps = new ConcurrentDictionary <long, MappedMemory>();

            Cache = new NvGpuVmmCache();

            PageTable = new long[PTLvl0Size][];
        }