Adds arm64 platform for Pink IK setup - #3686
Merged
kellyguo11 merged 5 commits intoOct 14, 2025
Merged
Conversation
peterd-NV
approved these changes
Oct 14, 2025
yanchangNvidia
approved these changes
Oct 14, 2025
Signed-off-by: Kelly Guo <kellyg@nvidia.com>
Signed-off-by: Kelly Guo <kellyg@nvidia.com>
7 tasks
kellyguo11
pushed a commit
that referenced
this pull request
Oct 16, 2025
…s. (#3731) # Description <!-- Thank you for your interest in sending a pull request. Please make sure to check the contribution guidelines. Link: https://isaac-sim.github.io/IsaacLab/main/source/refs/contributing.html 💡 Please try to keep PRs small and focused. Large PRs are harder to review and merge. --> ./isaaclab --install is failing on ARM64 platform because of a prior change #3686 that installs dex-retargeting for arm64/aarch64. The problem is that we are installing `dex-retargeting==0.4.6` which is dependent on `nlopt==2.6.2` and ARM is not supported through the pip install of this dependency. dex-retargeting is not required for the supported features on ARM64 since we are currently not supporting OpenXR, so the fix is to remove this install for this platform. Additional context: this bug was not caught previously in #3686 because apparently if `nlopt==2.6.2` is installed through pip then there are no wheels for arm64 available. However, if installed through conda there are binaries for arm64 in their channels. Coincidentally this was only tested on conda install. Long term solution: Is to upgrate teh dependency to `dex-retargeting==0.5.0` which installs a newer version of nlopt and that does not have this discrepancy in platform support. However, we are leaving that for the future as this upgrade needs to be tested thoroughly in the teleop pipeline. Fixes # (issue) `note: This error originates from a subprocess, and is likely not a problem with pip. ERROR: Failed building wheel for nlopt` during `./isaaclab -i` ## Type of change <!-- As you go through the list, delete the ones that are not applicable. --> - Bug fix (non-breaking change which fixes an issue) <!-- Example: | Before | After | | ------ | ----- | | _gif/png before_ | _gif/png after_ | To upload images to a PR -- simply drag and drop an image while in edit mode and it should upload the image directly. You can then paste that source into the above before/after sections. --> ## Checklist - [x] I have read and understood the [contribution guidelines](https://isaac-sim.github.io/IsaacLab/main/source/refs/contributing.html) - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with `./isaaclab.sh --format` - [ ] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] I have updated the changelog and the corresponding version in the extension's `config/extension.toml` file - [x] I have added my name to the `CONTRIBUTORS.md` or my name already exists there <!-- As you go through the checklist above, you can mark something as done by putting an x character in it For example, - [x] I have done this task - [ ] I have not done this task -->
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Aarch64/arm64 platform was not previously listed for pink-ik setup. This PR adds the platform support so that it is installed. This was tested on DGX Spark and verified to work.
Fixes # (issue)
https://nvbugspro.nvidia.com/bug/5576639 - [DGX Spark][Isaac-Lab 2.3] Facing errors while running generate dataset scripts for the task "Isaac-PickPlace-Locomanipulation-G1-Abs-v0" on DGX Spark
Type of change
Checklist
pre-commitchecks with./isaaclab.sh --formatconfig/extension.tomlfileCONTRIBUTORS.mdor my name already exists there