You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! Thank you for the open source code!
I try to configure and build the project on my own computer with ubuntu 20.04 and one Segmentation fault continues occuring when I execute cmake --build build -- -j1 # build
as shown in fig1:
And the corresponding build.make code is shown in fig2:
Computer configuration:
64G of RAM.
Graphics card RTX 3080 (10G version).
cuda version 12.0.
nvcc -V and nvidia-smi commands work.
Tested cuda in .cu scripts.
Looking forward to your kind reply, thanks! @Ailon-Island
The text was updated successfully, but these errors were encountered:
Hello,
it's nice to know that you are trying TacIPC!
Similar problems do not occur in our environments. Therefore, rather than a solution, here are just some suggestions that might help.
Since the command cmake --build build -- -j1 has an empty prompt indicator --, (or an end-of-command indicator), you might double check if the given line is really what you executed and does what you mean.
Actually, to build the project, we recommend cmake --build build --parallel [N_threads], where [N_threads] can be any proper number of threads. Conservatively 8, for example. Segfaults sometimes occur due to too many threads.
All other configurations seem fine. But does 5. in your computer configuration mean that you've tested building other CUDA projects with cmake? If so, there shouldn't be much problem with your environment configuration. Otherwise, maybe you could try to build some light and simple CUDA projects with cmake if suggestions above does not work.
(update) Maybe you could try newer cmake. On ubuntu, you can install with snap install cmake --classic and use the installed binary /snap/bin/cmake instead of that installed with apt.
Hello! Thank you for the open source code!
![fig1](https://private-user-images.githubusercontent.com/88637208/373999010-c1828d34-9408-4718-9010-e8a182de1ba8.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk0NDk5MjYsIm5iZiI6MTczOTQ0OTYyNiwicGF0aCI6Ii84ODYzNzIwOC8zNzM5OTkwMTAtYzE4MjhkMzQtOTQwOC00NzE4LTkwMTAtZThhMTgyZGUxYmE4LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTMlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjEzVDEyMjcwNlomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWI3MjRkZmQ1ZDg1Y2JmMzZiMDQ0YWYyMWE4YzM3ZmEwYTY5ZmIzOTU0YWQ0NWM4NjkyMDdmMDcwMTQzMGY4ZDAmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.o-P4RedSuXDzMDsWT181t3SswaMlcbGbscU78ved9t8)
![fig2](https://private-user-images.githubusercontent.com/88637208/373999218-f72f51ef-1fe0-4462-95f0-97b2969b8122.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk0NDk5MjYsIm5iZiI6MTczOTQ0OTYyNiwicGF0aCI6Ii84ODYzNzIwOC8zNzM5OTkyMTgtZjcyZjUxZWYtMWZlMC00NDYyLTk1ZjAtOTdiMjk2OWI4MTIyLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTMlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjEzVDEyMjcwNlomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTcwMzYwNzRlMmI3ODRmMDE5YzVlNzI5ZTJmNjdkYzJjZWM0ODkyZjc3ODgyNjIwNTU3ZTVmYTQyNGU5NTkzYjkmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.RVjPe_8jN9wXGx6I_ixirUdTytv1S-HF0CYHEBprqiI)
I try to configure and build the project on my own computer with ubuntu 20.04 and one Segmentation fault continues occuring when I execute
cmake --build build -- -j1 # build
as shown in fig1:
And the corresponding build.make code is shown in fig2:
Computer configuration:
Looking forward to your kind reply, thanks! @Ailon-Island
The text was updated successfully, but these errors were encountered: