DeclanRussell / NvidiaAIDenoiser

A simple implementation of Nvidia's AI denoiser
MIT License
398 stars 52 forks source link

Add support for OptiX 8 on Liunx. #31

Open pigLoveRabbit520 opened 1 month ago

pigLoveRabbit520 commented 1 month ago

GeForce RTX 3060 OS: Ubuntu 22.04 CUDA: 12.4 Driver Version: 550.100 NVIDIA-OptiX: 8.0.0 I have written a CMakeLists file and I successfully built the project. my fork

I also fix the bug

CU_CHECK(cudaMalloc(((void*)(l.input.data)), sizeof(float) * 4 * b_width * b_height));

to

CU_CHECK(cudaMalloc(((void**)&(l.input.data)), sizeof(float) * 4 * b_width * b_height));