2
0
Ficheiros
rocm-systems/projects/hip/samples/0_Intro/module_api/vcpy_isa.cu
T

7 linhas
103 B
Plaintext
Em bruto Vista normal Histórico

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