cd0589ff02
2. Added sample which loads/run kernel binary during runtime?
Change-Id: I26ccaca1f844fee317592e26c9e654ce548b96a8
[ROCm/hip-tests commit: c1b1086c71]
7 line
103 B
Plaintext
7 line
103 B
Plaintext
|
|
extern "C" __global__ void hello_world(float *a, float *b)
|
|
{
|
|
int tx = threadIdx.x;
|
|
b[tx] = a[tx];
|
|
}
|