Html/CSS
host 标签描述

比如用__host__&__device__的情况如下: include<cstdio> include<cuda_runtime.h> __host____device__voidsay_hello(){ printf("Hello,world!\n"); } __global__voidkernel(){ say_hello(); } intmain(){ kernel<<<1,1>>>(); cudaDeviceSynchronize(); say_hello(); return0; } } 则可以用cons...