
cuda学习
nch970214
这个作者很懒,什么都没留下…
展开
-
cuda报告
课 程 设 计题目: CUDA加速和优化直方图均衡化姓 名: nch学 号: SA19219093学 院: 微电子学院学校:中国科学技术大学专 业: 集成电路指导教师: 谭立湘2019 年 12 月 15 日...原创 2019-12-10 16:16:08 · 1317 阅读 · 0 评论 -
CUDA直方图均衡化(优化和加速)
GPU开发课程作业(USTC)(2019年12月9):cpu代码:void cpu_histogram_equalization(uchar *data,int width, int height){ int i = 0, j = 0, temp = 0; int size = height*width; //直方图的统计 unsigned int hist[256] = {...原创 2019-12-09 20:05:40 · 1819 阅读 · 2 评论