938664978
938664978
全部文章
cuda
AI(18)
algorithm(18)
C(6)
computer-vision(15)
database(1)
fortran(1)
hardware(3)
java(1)
leetcode(39)
MathModeling(19)
matlab(5)
other(8)
python(68)
robotics(13)
web-development(4)
未归档(5)
归档
标签
去牛客网
登录
/
注册
938664978的博客
全部文章
/ cuda
(共2篇)
使用cuda计算灰度图像
下面是一个利用cuda计算数组元素三次方的c程序。 #include <stdio.h> // __global__ 是cuda核函数标识符。cuda会将这个函数识别为核函数 __global__ void cube(float * d_out, float * d_in){ /...
2020-07-13
0
535
[cuda] 02 Communication Pattern and GPU hardware
parallel computing parallel computing : many threads solving a problem by working together. The key to work together is to communicate. 00. MAP Ta...
2020-07-13
0
969