Files
rocm-systems/projects/hip/samples/0_Intro/module_api/vcpy_isa.cpp
T

10 lines
157 B
C++
Raw Normal View History

#include<hip_runtime.h>
__global__ void hello_world(hipLaunchParm lp, float *a, float *b)
{
int tx = hipThreadIdx_x;
b[tx] = a[tx];
}
int main(){}