-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
21 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
from .array import ArrayTriangles | ||
from .jax_array import ArrayTriangles as JAXArrayTriangles | ||
try: | ||
from .jax_array import ArrayTriangles as JAXArrayTriangles | ||
except ImportError: | ||
pass |
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,4 +1,7 @@ | ||
from .coordinate_array import CoordinateArrayTriangles | ||
from .jax_coordinate_array import ( | ||
CoordinateArrayTriangles as JAXCoordinateArrayTriangles, | ||
) | ||
try: | ||
from .jax_coordinate_array import ( | ||
CoordinateArrayTriangles as JAXCoordinateArrayTriangles, | ||
) | ||
except ImportError: | ||
pass |