Files
rocm-systems/samples/0_Intro/module_api/vcpy_kernel.cpp
T
Maneesh Gupta c63944fc08 module_api sample: no longer need EXTERN_C workaround
Change-Id: Ida087d832df8e1f3620b38f920ec2853aad641c8
2016-09-04 13:49:43 +05:30

9 wiersze
160 B
C++

#include "hip/hip_runtime.h"
extern "C" __global__ void hello_world(hipLaunchParm lp, float *a, float *b)
{
int tx = hipThreadIdx_x;
b[tx] = a[tx];
}