Files
rocm-systems/projects/hip-tests/samples/0_Intro/module_api/vcpy_kernel.cu
T

7 lines
109 B
Plaintext
Raw Normal View History

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