nerfstudio-project / nerfacc

A General NeRF Acceleration Toolbox in PyTorch.
https://www.nerfacc.com/
Other
1.37k stars 113 forks source link

.data_ptr<long>() in scan_cub.cu need to be replaced with .data_ptr<int64_t>() for correct operation on Windows #293

Open asupikov opened 2 months ago

asupikov commented 2 months ago

Currently, nerfacc crashes on Win because long resolves to int32_t there rather than int64_t like on Linux.