7 lines
109 B
Plaintext
7 lines
109 B
Plaintext
|
|
extern "C" __global__ void hello_world(float *a, float *b)
|
||
|
|
{
|
||
|
|
int tx = threadIdx.x;
|
||
|
|
b[tx] = a[tx];
|
||
|
|
|
||
|
|
}
|