graphdeco-inria / gaussian-splatting

Original reference implementation of "3D Gaussian Splatting for Real-Time Radiance Field Rendering"
https://repo-sam.inria.fr/fungraph/3d-gaussian-splatting/
Other
14.04k stars 1.82k forks source link

SBIR viewer (pre-built Windows binaries) won't start due to low compute capability #170

Open tangfucius opened 1 year ago

tangfucius commented 1 year ago

My machine has a GTX 1080 ti, so when I run the pre-built SIBR_gaussianViewer_app, it crashes with he error message "Sorry, need at least compute capability 7.0+!". Is there a workaround for this? I can run the 3DGS nerfstudio viewer pretty smoothly, so my GPU is definitely capable of handling it.

Thanks for this awesome work!

WWmore commented 1 year ago

same setting, same problem, need a solver. Thanks!

jag2x commented 1 year ago

Can we recompile SIBR for compute 6.0 and above?

radraddles commented 1 year ago

same card series and issue, wondering if any have found a solution yet?

kie-tokai commented 1 year ago

This may be just a temporary solution. I simply commented out line 337 in GaussianView.cpp, which was:

if (prop.major < 7) { SIBR_ERR << "Sorry, need at least compute capability 7.0+!"; }

Then, I recompiled the SBIR viewer and it was able to start.