Skip to content
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

🚀 Increase performance of axis-angle conversions #1544

Closed
wants to merge 4 commits into from

Conversation

Theo-Cheynel
Copy link
Contributor

Motivations and context

When converting from axis-angle to matrix and back, current rotation_conversions.py does an intermediate step by converting to quaternions. There exists a faster way using Rodrigues' rotation formula .

Changes

Used the formulas for both axis-angle to matrix and matrix to axis-angle conversions.
The changes work with any number of batch dimensions, just like the original functions.

Effect

There is a 2x speedup when converting from axis-angle to matrix, and this speedup is consistent regardless of device and batch size.
There is a 5-8x speedup when converting from matrix to axis-angle.

The only difference in the results happens in matrix_to_axis_angle, when you give as input a matrix that is not a rotation matrix. This behaviour is undocumented anyway and the results do not make sense either way.
If this is really an issue, we can always merge only the first part of the changes, or we could check that the matrix is orthogonal and run the previous code if it isn't (for backwards compatibility)

@facebook-github-bot facebook-github-bot added the CLA Signed This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed. label May 24, 2023
@facebook-github-bot
Copy link
Contributor

@bottler has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator.

@bottler
Copy link
Contributor

bottler commented Jul 14, 2023

I'm worried about very small angles here. The current implementations delegate to other functions which are being really careful about nasty angles.

@facebook-github-bot
Copy link
Contributor

@Theo-Cheynel has updated the pull request. You must reimport the pull request before landing.

@alex-bene
Copy link
Contributor

@bottler sorry for reviving this old PR, but is there no interest in merging this? Testing locally (m1 max) the pytorch3d implementation for axis-angles to rotation matrix conversion with the intermediate step vs a conversion directly using the [Rodrigues' rotation formula, there is more than 10x difference in performance.

@bottler
Copy link
Contributor

bottler commented Feb 3, 2025

I guess it could be added as a "fast" option? The default can't be this unless we have some way to check corner cases.

@alex-bene
Copy link
Contributor

Hey @bottler , thanks for the prompt response, I made a new PR (#1948 ) to make improvements to the proposed changes from this PR. (I couldn't find a way to make a commit here)

I'm worried about very small angles here. The current implementations delegate to other functions which are being really careful about nasty angles.

  • I believe this is also addressed within these changes, but let me know if there is something we need to improve further.

@bottler
Copy link
Contributor

bottler commented Feb 4, 2025

@alex-bene Can we be really conservative: add fast: bool=False, eps: float = 1e-6 as parameters and then the code would be

if not fast: 
    return quaternion_to_matrix(axis_angle_to_quaternion(axis_angle))
<<<your code>>>

?

facebook-github-bot pushed a commit that referenced this pull request Feb 7, 2025
Summary:
This is an extension of #1544 with various speed, stability, and readability improvements. (I could not find a way to make a commit to the existing PR). This PR is still based on the [Rodrigues' rotation formula](https://en.wikipedia.org/wiki/Rotation_formalisms_in_three_dimensions#Rotation_matrix_%E2%86%94_Euler_axis/angle).

The motivation is the same; this change speeds up the conversions up to 10x, depending on the device, batch size, etc.

### Notes
- As the angles get very close to `π`, the existing implementation and the proposed one start to differ. However, (my understanding is that) this is not a problem as the axis can not be stably inferred from the rotation matrix in this case in general.
- bottler , I tried to follow similar conventions as existing functions to deal with weird angles, let me know if something needs to be changed to merge this.

Pull Request resolved: #1948

Reviewed By: MichaelRamamonjisoa

Differential Revision: D69193009

Pulled By: bottler

fbshipit-source-id: e5ed34b45b625114ec4419bb89e22a6aefad4eeb
@alex-bene
Copy link
Contributor

@bottler we can also close this PR based on #1948 and 7a3c0cb

@bottler bottler closed this Feb 8, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CLA Signed This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants