-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Fix install_conda in setup-ubuntu.sh to consider the CPU architecture #8706
Conversation
✅ Deploy Preview for meta-velox canceled.
|
@kgpai @majetideepak can you please review this? Thanks! |
Thank you @majetideepak for the review! @mbasmanova can you please help with completing this? |
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.
@acvictor @majetideepak Would it be possible to update PR title and description to clarify what these changes are about? What was the problem and what is the solution?
@kgpai Krishna, would you help review and merge this PR?
@mbasmanova I added a description. Thanks. |
@majetideepak Thank you, Deepak. |
@majetideepak @acvictor We are having some issues importing PRs today; we hope to fix this soon, please give a day or two to merge and land these PRs. |
@mbasmanova has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
@acvictor Would you rebase so we can merge? |
Done! |
@mbasmanova has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
@mbasmanova merged this pull request in 5d1d2a3. |
Conbench analyzed the 1 benchmark run on commit There were no benchmark performance regressions. 🎉 The full Conbench report has more details. |
The function install_conda in setup_ubuntu.sh always downloads the conda package corresponding to
the CPU architecture x86_64.
Fix the function to download the conda package based on the actual CPU architecture (x86_64 or aarch64).
Resolves #8453