yum-mirror/slang
Making it easier to work with shaders
git clone https://git.yummers.dev/yum-mirror/slang
6e6a876a6
master
1//TEST(smoke):COMPILE: -pass-through nvrtc -target ptx -entry hello tests/cuda/cuda-compile.cu 2 3__global__ 4void hello(char *a, int *b) 5{ 6 a[threadIdx.x] += b[threadIdx.x]; 7}