
CUDA
文章平均质量分 55
Freeze-hu
这个作者很懒,什么都没留下…
展开
-
Tensorflow_gpu对应的CUDA版本
如果需要查询最新的,请访问官网地址:https://www.tensorflow.org/install/source_windowsGPU版本 Python 版本 编译器 构建工具 cuDNN CUDA tensorflow_gpu-2.6.0 3.6-3.9 MSVC 2019 Bazel 3.7.2 8.1 11.2 tensorflow_gpu-2.5.0 3.6-3.9 MSVC 2019 Bazel 3原创 2022-01-12 10:52:14 · 4654 阅读 · 0 评论 -
CUDA获取SM获取架构名称的代码
sSMtoArchName这个结构体由SM版本和相对应的Cuda架构名称组成typedef struct { int SM; // 0xMm (hexidecimal notation), M = SM Major version, // and m = SM minor version const char* name; } sSMtoArchName;可以看出架构的名称分别为:Kepler、Maxwell、Pascal、Volta、Xavier、TuringsS...原创 2021-10-24 17:55:39 · 551 阅读 · 0 评论 -
CUDA获取SM中Cores个数的代码
sSMtoCores 这个结构体方式SM版本和相对应的Cuda核个数typedef struct { int SM; // 0xMm (hexidecimal notation), M = SM Major version, 如 3.0 5.0 // and m = SM minor version int Cores; } sSMtoCores;遍历如下数组,就可以获取相应的cuda cores个数 ,比如 5.0对应的是 0x50 ,对应的cor...原创 2021-10-24 17:49:00 · 2445 阅读 · 0 评论