Make CUDA 12.6 compiler work on Fedora 40#206
Make CUDA 12.6 compiler work on Fedora 40#206AlexKurek wants to merge 3 commits intotikk3r:fedora-py3from
Conversation
becec90 to
8f89abb
Compare
|
What does it do? CUDA has flags to enable unsupported compilers on its own, but I haven't had success with that. |
|
It installs GCC 13 and redirects the calls to it (to version 13). |
How much space does that take? There's not really any CUDA functionality that we use, so installing a whole second compiler suite is a bit overkill just to get CUDA. |
|
It installs just 3 packages: EDIT |
Isn't it like when e.g. DP3 sees that GPU is present and something can be computed faster by GPU - it will compute it using CUDA on GPU, even if a papielline is not (directly) using CUDA? |
No it's not that simple unfortunately. From what I know there is only one specific solver mode that has a GPU version at the moment. |
For DP3 it's hardcoded to off at the moment. It can be left like that for the time being. For Sagecal it'll depend how it uses it, IDG builds for example, so you'll just have to test it. |
Description
This is the base to add CUDA to DP3 and Sagecal.
Explanation: https://negativo17.org/cuda-with-unsupported-gcc-versions/
Related: #151, #152.