Esempio n. 1
0
        private static string GetName(NvPhysicalGpuHandle handle)
        {
            string gpuName;

            if (NVAPI.NvAPI_GPU_GetFullName(handle, out gpuName) == NvStatus.OK)
            {
                return("NVIDIA " + gpuName.Trim());
            }
            else
            {
                return("NVIDIA");
            }
        }