-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support batch axes / broadcasting (#19)
* Support batch axes across APIs * Add batch axes to tests + bug fixes * Fix index error for analytical SO(2) Jacobians * Formatting * Broadcasting tests, bug fixes * More fixes * More test improvements, fixes * Update vmap example with broadcasting notes * Formatting * More comments * Add bullet to docs
- Loading branch information
Showing
23 changed files
with
756 additions
and
445 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,10 @@ | ||
from . import hints, manifold, utils | ||
from ._base import MatrixLieGroup, SEBase, SOBase | ||
from ._se2 import SE2 | ||
from ._se3 import SE3 | ||
from ._so2 import SO2 | ||
from ._so3 import SO3 | ||
|
||
__all__ = [ | ||
"hints", | ||
"manifold", | ||
"utils", | ||
"MatrixLieGroup", | ||
"SOBase", | ||
"SEBase", | ||
"SE2", | ||
"SO2", | ||
"SE3", | ||
"SO3", | ||
] | ||
from . import hints as hints | ||
from . import manifold as manifold | ||
from . import utils as utils | ||
from ._base import MatrixLieGroup as MatrixLieGroup | ||
from ._base import SEBase as SEBase | ||
from ._base import SOBase as SOBase | ||
from ._se2 import SE2 as SE2 | ||
from ._se3 import SE3 as SE3 | ||
from ._so2 import SO2 as SO2 | ||
from ._so3 import SO3 as SO3 |
This file contains 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
Oops, something went wrong.