-
Notifications
You must be signed in to change notification settings - Fork 4
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
chore: bump cuda base version to a more recent one #248
Conversation
271b4a9
to
8551a2e
Compare
/e2e --tests=camelyon,mnist,doc |
End to end tests: ✔️ SUCCESS Awesome! 🎉 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. Just wondering, has it been tested on dev with --use-gpu
?
@@ -37,7 +37,7 @@ | |||
""" | |||
|
|||
_GPU_BASE_IMAGE = """ | |||
FROM nvidia/cuda:11.8.0-runtime-ubuntu22.04 | |||
FROM nvidia/cuda:12.6.1-runtime-ubuntu24.04 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
11.8.0 -> 12.6.1 seems like a huge bump - are we sure there was not a reason for using 11.8.0?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
11.8 is not supported in Ubuntu 24.04.
Having to use Ubuntu 22.04 is forcing us to either install a vulnerable version of libpixman-1-dev
(a dependency of openslides-tool) or to install libpixman-1-dev
from source (I must admit, I haven't investigated much further this option).
Current versions of pytorch are still supporting CUDA 11.8, but it's the oldest version supported.
I can try with cuda 12.5.1, which is the oldest CUDA supported by Ubuntu 24.04 https://gitlab.com/nvidia/container-images/cuda/blob/master/doc/supported-tags.md
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tested on dev ✅
Signed-off-by: SdgJlbl <[email protected]>
8551a2e
to
a9ce6fd
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks
Fixes FL-1740