-
Notifications
You must be signed in to change notification settings - Fork 19
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
Move from manylinux2010 to manylinux2014 #122
Comments
2014 should be mostly good to go, somehow this project was ahead of that (#93) Changing to 2014 to would effect a user like myself on older machines which don't pickup 2014 wheels, but this should not be any concern to this project at this point. Just-in-case, you might be able to adapt the pip calls during wheel building with All in all, changing to 2014 is probably past due. |
On a related note I just broke CI in b61de35
Do I have to just revert the Makefile, or is there hope of including this? I know nothing about manylinux and not much about cuda / NV arch stuff. |
well I reverted the Makefile for now; can add a site |
Hi Alex, I suspect to implement that arch on either of the manylinux packages would require upgrading CUDA in the dockerfiles. Basically I combined the official "manylinux" container with some Nvidia container components to create that platform where the wheels are built. our manylinux2010 is CUDA 10.1 I believe the CUDA version should be at least 11.1 for that gpu. Upgrading the CUDA used for packaging would potentially have the side effect of breaking some backward compatibility with older cards, if that matters. That is, the prepackaged binary might not be compatible with someone who has a Maxwell (or older) card (or older driver than we built against). With that said, Maxwell is getting pretty old now... Changing the docker files is totally feasible, but would require some testing. Hope that helps. |
THanks for the explanation. I think we're fine for now, since I added a FI
site that has Ampere settings. Hope all's well, and if you're at a loose
end look at #123
Also, I wonder how the multi-GPU tests worked out, or maybe Johannes was
doing those? But you're probably not at a loose end :)
Cheers, Alex
…On Thu, Dec 2, 2021 at 8:46 PM Garrett Wright ***@***.***> wrote:
Hi Alex, I suspect to implement that arch on either of the manylinux
packages would require upgrading CUDA in the dockerfiles. Basically I
combined the official "manylinux" container with some Nvidia container
components to create that platform where the wheels are built.
our manylinux2010 is CUDA 10.1
our manylinux2014 is CUDA 11.0
I believe the CUDA version should be at least 11.1 for that gpu.
Upgrading the CUDA used for packaging would potentially have the side
effect of breaking some backward compatibility with older cards, if that
matters. That is, the prepackaged binary might not be compatible with
someone who has a Maxwell (or older) card (or older driver than we built
against). With that said, Maxwell is getting pretty old now... Changing the
docker files is totally feasible, but would require some testing.
Hope that helps.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#122 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACNZRSU77LUA5BTEDEFEFBTUPAOQBANCNFSM5JBNMMMA>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
--
*---------------------------------------------------------------------~^`^~._.~'
|\ Alex H. Barnett Center for Computational Mathematics, Flatiron
Institute
| \ http://users.flatironinstitute.org/~ahb
646-876-5942
|
Ok so are we agreed about moving to |
As discussed in #121, the new version of NumPy only releases binary wheels for manylinux2014, while our CI (and our releases) are for manylinux2010 for now. This is currently resolved by downgrading NumPy to the last version to publish manylinux2010 wheels (1.21), but this is not a tenable solution. One way to approach this would be to stick with manylinux2010 but build NumPy from source during testing. However, the fact that this is becoming a problem suggests that it is maybe time to move to manylinux2014. This should be relatively straightforward to implement, but we have to consider downstream issues. Are any dependent packages going to be severely affected by this?
The text was updated successfully, but these errors were encountered: