yum-mirror/slang

Making it easier to work with shaders

git clone https://git.yummers.dev/yum-mirror/slang

jsmall-nvidiaSlang compiles CUDA source via NVRTC (#1151)6e6a876a6

master
176 B7 linesraw
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}