Files
rocm-systems/tests/src/vcpy_isa.cu
T

7 строки
103 B
Plaintext
Исходник Обычный вид История

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