码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2014-08-09 21:04:09      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:blog   io   for   2014   art   ar   div   log   

#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核函数再调用核函数,多层并行

标签:blog   io   for   2014   art   ar   div   log   

原文地址:http://www.cnblogs.com/hrhguanli/p/3901440.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!