-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Optimize Face Bounds Computation (#877)
* add benchmark for face bounds helpers * add benchmark for face bounds helpers * optimize point_within_gca * disable fma for benchmark * numba implementations of isclose and allclose * dot and cross numba * dot and cross numba * update dot * update dot * try to fix dot (1) * gca_gca_extreme * numba xyz to latlon rad with no norm * disable FMA * enable FMA * add more dot calls * remove leftover code * fix tests * fix failing tests * update isclose call * disable FMA for benchmark * fix broken isclose call * add docstrings, option to enable and disable fma * add some vectorization * numba all * point_within_gca numba * fix error in tests * better function name * revert asv.conf.json
- Loading branch information
Showing
11 changed files
with
308 additions
and
144 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 |
---|---|---|
|
@@ -15,4 +15,6 @@ | |
ENABLE_JIT_CACHE = True | ||
ENABLE_JIT = True | ||
|
||
ENABLE_FMA = False | ||
|
||
GRID_DIMS = ["n_node", "n_edge", "n_face"] |
Oops, something went wrong.