首页 > 其他 > 详细

cuda核函数再调用核函数,多层并行

时间:2014-06-03 03:56:28      阅读:340      评论:0      收藏:0      [点我收藏+]
#include <stdio.h>



__global__ void childKernel(int i)
{
	int tid = blockIdx.x*blockDim.x+threadIdx.x;
	printf("parent:%d,child:%d\n",i,tid);
	for(int j=i;j<i+10;j++)
	{
		printf(",%d",j);
	}
	printf("\n");
}

__global__ void kernel()
{

	int tid = blockIdx.x*blockDim.x+threadIdx.x;
	childKernel<<<1,2>>>(tid);
}

int main()
{

	kernel<<<1,1>>>();
	cudaDeviceSynchronize();

return 0;
}

cuda核函数再调用核函数,多层并行,布布扣,bubuko.com

cuda核函数再调用核函数,多层并行

原文:http://blog.csdn.net/linger2012liu/article/details/26258117

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!