-
Notifications
You must be signed in to change notification settings - Fork 22
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 typo bug with vreinterpretq + CI improvements #21
Conversation
The type order is swapped; we got it right most places but missed it here. Not sure why CI didn't catch this error?
@Rooholla-KhorramBakht, are you able to confirm that this PR fixes #20 for you? The CI failure on Ubuntu is unrelated. |
Eventually, we're going to want to add Python tests, so we might as well set up for it. Also, nanobind only requires `typing_extensions` on Python <3.11, so we can remove that install (which errors on Ubuntu 24 with Python 3.12).
Hi, thanks for the quick addressing of the problem! I'll verify as soon as I'm back in the lab. |
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.
LGTM. Runners pass and compiles locally.
After fixing two extra type issues (pull request #22), the package compiled and installed on my Orin. |
Fixes #20. We had a typo in two uses of vreinterpretq which tried to cast the wrong direction. Not
sure why we didn't see this on other ARM platforms - maybe just more lenient compilers, since the
reinterpret should be a NOP.
Also updates/cleans up the build CI, since I was in there anyway checking if we had an ARM runner.