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