Example #1
0
        public IntPtr AllocateHost(uint bytes)
        {
            IntPtr pp = new IntPtr();

            this.LastError = CUDADriver.cuMemAllocHost(ref pp, bytes);
            return(pp);
        }