-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Conversation
@bottler has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
I'm worried about very small angles here. The current implementations delegate to other functions which are being really careful about nasty angles. |
@Theo-Cheynel has updated the pull request. You must reimport the pull request before landing. |
@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. |
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. |
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)
|
@alex-bene Can we be really conservative: add
? |
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
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)