-
-
Notifications
You must be signed in to change notification settings - Fork 50
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 ARM image for CUDA #189
Conversation
linux-anvil-aarch64-cuda/Dockerfile
Outdated
# Download and cache CUDA related packages. | ||
RUN source /opt/conda/etc/profile.d/conda.sh && \ | ||
conda activate && \ | ||
conda create -n test --yes --quiet --download-only \ | ||
conda-forge::cudatoolkit=${CUDA_VER} | ||
&& \ | ||
conda remove --yes --quiet -n test --all && \ | ||
conda clean -tiy && \ | ||
chgrp -R lucky /opt/conda && \ | ||
chmod -R g=u /opt/conda; \ |
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.
This should work after merging and building packages from PR ( conda-forge/cudatoolkit-feedstock#59 )
3c40828
to
c145477
Compare
7c77428
to
7e21a66
Compare
7e21a66
to
e56c2f3
Compare
cc @Ethyling (for awareness) |
Rerunning CI now that PR ( conda-forge/cudatoolkit-feedstock#59 ) is in and packages built |
@conda-forge/core, this is ready for review! 😄 |
btw I noticed several CI jobs failed at the merge commit: |
Yeah some of the |
Based off the existing ARM image and the PPC CUDA image, this adds a CUDA ARM image, which is needed for building CUDA ARM packages.