2
0

SWDEV-339113 - Update sampl codes with correct kernel coordinate (#2704)

Change-Id: Ibfc0fd285441cd3d79b312d2b739729a039a6f84
Este cometimento está contido em:
ROCm CI Service Account
2022-06-02 17:07:52 +05:30
cometido por GitHub
ascendente f6f8a0d144
cometimento e6ded45898
14 ficheiros modificados com 47 adições e 47 eliminações
+1 -1
Ver ficheiro
@@ -23,6 +23,6 @@ THE SOFTWARE.
#include "hip/hip_runtime.h"
extern "C" __global__ void hello_world(float* a, float* b) {
int tx = hipThreadIdx_x;
int tx = threadIdx.x;
b[tx] = a[tx];
}