Files
rocm-systems/hipamd/samples/0_Intro/module_api/vcpy_isa.cu
T

7 lines
103 B
Plaintext
Raw Normal View History

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