-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a backward-compatible fix for modules
math._linalg
and `math._s…
…pecial` they are now located in `math.linalg` and `math.special`
- Loading branch information
Showing
3 changed files
with
25 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
tensorTRAX: Math on (Hyper-Dual) Tensors with Trailing Axes. | ||
""" | ||
|
||
__version__ = "0.18.0" | ||
__version__ = "0.18.1" |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from .linalg import _det, _inv, _pinv, det, eigh, eigvalsh, expm, inv, pinv | ||
|
||
__all__ = ["_det", "_inv", "_pinv", "det", "eigh", "eigvalsh", "expm", "inv", "pinv"] | ||
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
from .special import ( | ||
ddot, | ||
dev, | ||
from_triu_1d, | ||
from_triu_2d, | ||
sym, | ||
tresca, | ||
triu_1d, | ||
von_mises, | ||
) | ||
|
||
__all__ = [ | ||
"ddot", | ||
"dev", | ||
"from_triu_1d", | ||
"from_triu_2d", | ||
"sym", | ||
"tresca", | ||
"triu_1d", | ||
"von_mises", | ||
] |