Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SIBR Viewer closes before loading, error "Sorry, need at least compute capability 7.0+!" #175

Open
calebcriste opened this issue Sep 7, 2023 · 8 comments

Comments

@calebcriste
Copy link

calebcriste commented Sep 7, 2023

I encountered an error message that stated, "Sorry, need at least compute capability 7.0+!" My current GPU is an NVIDIA GeForce GTX 1080 Ti which I believe is a '6.1' which tells me that my GPU isn't powerful enough to run the software. I was able to create a few training sets and haven't been able to view them yet because of the issue.

I'm able to run Instant NGP and create NeRFs but that seems useless if I can run SIBR viewer with Gaussian Splatz that looks better overall.

Any ideas?


🔴UPDATE:
Thanks to @Disa-Kizonda I've gone ahead and created a little updated YouTube video showing off the process here - https://youtu.be/UPypfPUzT_A - take a look and let me know if you have any questions! 🙌

@TheAlex626
Copy link

I have the same issue.

@Disa-Kizonda
Copy link

Disa-Kizonda commented Sep 30, 2023

You need to change 2 files in SIBR_viewers folder to fix it

  1. SIBR_viewers\extlibs\CudaRasterizer\CudaRasterizer\CMakeLists.txt

Change line
set_target_properties(CudaRasterizer PROPERTIES CUDA_ARCHITECTURES "70;75;86")
To
set_target_properties(CudaRasterizer PROPERTIES CUDA_ARCHITECTURES "60;70;75;86")

  1. SIBR_viewers\src\projects\gaussianviewer\renderer\GaussianView.cpp

Remove code on line 337

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

Then rebuild it https://github.com/graphdeco-inria/gaussian-splatting#windows

Or just download mine
https://mega.nz/file/Iz5BSDLK#q9E9xxi6J6hpU0fRZJ4CNwvdoI9z_dYFrHD-_deFALY

@TheAlex626
Copy link

Thank you!

@meidachen
Copy link

@Disa-Kizonda , Thank you!

@HkDzl
Copy link

HkDzl commented Dec 10, 2023

@Disa-Kizonda , Thank you very much!

@wanger-666
Copy link

You need to change 2 files in SIBR_viewers folder to fix it您需要更改文件夹中的 2 个文件SIBR_viewers以修复它

  1. SIBR_viewers\extlibs\CudaRasterizer\CudaRasterizer\CMakeLists.txt

Change line 换行 set_target_properties(CudaRasterizer PROPERTIES CUDA_ARCHITECTURES "70;75;86") To 自 set_target_properties(CudaRasterizer PROPERTIES CUDA_ARCHITECTURES "60;70;75;86")

  1. SIBR_viewers\src\projects\gaussianviewer\renderer\GaussianView.cpp

Remove code on line 337删除第 337 行上的代码

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

Then rebuild it https://github.com/graphdeco-inria/gaussian-splatting#windows然后重建它 https://github.com/graphdeco-inria/gaussian-splatting#windows

Or just download mine 或者只是下载我的 https://mega.nz/file/Iz5BSDLK#q9E9xxi6J6hpU0fRZJ4CNwvdoI9z_dYFrHD-_deFALY

god bless you!

@BenjaminJaume
Copy link

You need to change 2 files in SIBR_viewers folder to fix it

  1. SIBR_viewers\extlibs\CudaRasterizer\CudaRasterizer\CMakeLists.txt

Change line set_target_properties(CudaRasterizer PROPERTIES CUDA_ARCHITECTURES "70;75;86") To set_target_properties(CudaRasterizer PROPERTIES CUDA_ARCHITECTURES "60;70;75;86")

  1. SIBR_viewers\src\projects\gaussianviewer\renderer\GaussianView.cpp

Remove code on line 337

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

Then rebuild it https://github.com/graphdeco-inria/gaussian-splatting#windows

Or just download mine https://mega.nz/file/Iz5BSDLK#q9E9xxi6J6hpU0fRZJ4CNwvdoI9z_dYFrHD-_deFALY

Worked for me, thank you!

@guajiangjun
Copy link

@Disa-Kizonda Thanks a lot!!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

8 participants