通过调用CUDA的cudaGetDeviceProperties函数可以获得指定设备的相关信息,此函数会根据GPU显卡和CUDA版本的不同得到的结果也有所差异,下面code列出了经常用到的设备信息: #include "funset.hpp" #include <iostream> #include <cuda_runtime.h> // For the CUDA runtime routines (prefixed with "cuda_"
原文http://www.cnblogs.com/java-koma/archive/2013/05/22/3093306.html 通常情况下我们需要知道用户设备的一些信息:deviceId, os version, 设备制造商, 设备型号. 下面的代码用于获取设备的信息.(注:代码源于网络) public class DeviceInfoHelper { public async static Task<DeviceInfo> GetDeviceInfoAsync() { DeviceIn