Files
rocm-systems/projects/hip-tests/catch/kernels/Set.cpp
T
2025-08-20 19:58:06 +05:30

6 строки
130 B
C++

#include <kernels.hh>
__global__ void Set(int* Ad, int val) {
int tx = threadIdx.x + blockIdx.x * blockDim.x;
Ad[tx] = val;
}