-
Notifications
You must be signed in to change notification settings - Fork 548
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
Add aarch64 conda environments #6226
base: branch-25.02
Are you sure you want to change the base?
Conversation
Note that I still haven't successfully gotten a build to work in these arm environments with the default |
I've just performed a successful ARM build with this configuration. Good to go from my perspective. |
Ok, after fiddling with a bunch of things on my machine unrelated to this conda environment, I can now also confirm these environments build for me. Should be good to go. |
/ok to test |
1 similar comment
/ok to test |
Previously we only had environment files for x86-64, which made setting up a dev environment on an aarch64 machine trickier.
@@ -4,7 +4,7 @@ files: | |||
output: conda | |||
matrix: | |||
cuda: ["11.8", "12.5"] | |||
arch: [x86_64] | |||
arch: [x86_64, aarch64] |
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.
@jcrist the PR to merge cuda 12.8 support was just merged, so the all_cuda...
files will need to be regenerated in this PR before merging
Previously we only had environment files for x86-64, which made setting up a dev environment on an aarch64 machine trickier.