上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 75 下一页
摘要: threadIdx是一个uint3类型,表示一个线程的索引。 blockIdx是一个uint3类型,表示一个线程块的索引,一个线程块中通常有多个线程。 blockDim是一个dim3类型,表示线程块的大小。 gridDim是一个dim3类型,表示网格的大小,一个网格中通常有多个线程块。 下面这张图比 阅读全文
posted @ 2018-08-11 10:30 Dsp Tian 阅读(22313) 评论(0) 推荐(4) 编辑
摘要: gcc8.1和cuda9.0版本不兼容,比较坑。 下面是各版本cuda支持的gcc: 从CUDA 4.1版本开始,现在支持gcc 4.5。gcc 4.6和4.7不受支持。 从CUDA 5.0版本开始,现在支持gcc 4.6。gcc 4.7不受支持。 从CUDA 6.0版本开始,现在支持gcc 4.7 阅读全文
posted @ 2018-08-08 11:00 Dsp Tian 阅读(6551) 评论(0) 推荐(2) 编辑
摘要: 原文地址:https://www.cnblogs.com/lzpong/p/5755678.html 我这里是centos7 升级到gcc8.1,过程差不多,参考这篇文章,记录一下。 原文 CentOS 6.6 升级GCC G++ (当前最新GCC/G++版本为v6.1.0) 没有便捷方式, yum 阅读全文
posted @ 2018-08-06 17:23 Dsp Tian 阅读(605) 评论(0) 推荐(0) 编辑
摘要: 需要看下生成的数据在地球上的经纬度具体位置。 投影为墨卡托投影。 阅读全文
posted @ 2018-08-06 15:02 Dsp Tian 阅读(14030) 评论(2) 推荐(0) 编辑
摘要: 带了几年项目,终于持证上岗了,5A通过。 阅读全文
posted @ 2018-07-20 12:00 Dsp Tian 阅读(469) 评论(0) 推荐(1) 编辑
摘要: vi /etc/profile 文件最后输入export PATH=$PATH:/usr/abc/def/ 保存 输入source /etc/profile刷新刚刚修改过的环境变量文件 阅读全文
posted @ 2018-07-11 15:27 Dsp Tian 阅读(1941) 评论(0) 推荐(2) 编辑
摘要: grep 'name' -r / 阅读全文
posted @ 2018-07-09 16:36 Dsp Tian 阅读(483) 评论(0) 推荐(0) 编辑
摘要: https://devtalk.nvidia.com/default/topic/1027209/cuda-setup-and-installation/cuda-9-0-does-not-work-with-the-latest-vs-2017-update/ 阅读全文
posted @ 2018-07-04 22:29 Dsp Tian 阅读(1212) 评论(0) 推荐(0) 编辑
摘要: 如果安装ffmpeg后发现找不到ffmpeg相关的so,可以试试export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig 阅读全文
posted @ 2018-06-27 15:03 Dsp Tian 阅读(378) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include using namespace std; void test(int a,int b) { for (size_t i = 0; i vT; for (size_t i = 0; i < 10; i++) vT.push_back(thread(test, i,i+100)); ... 阅读全文
posted @ 2018-05-19 10:18 Dsp Tian 阅读(487) 评论(0) 推荐(0) 编辑
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 75 下一页