forked from numba/numba
-
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.
Merge pull request numba#9094 from stuartarchibald/fix/8172
Add support for a 'max' level to NUMBA_OPT environment variable.
- Loading branch information
Showing
5 changed files
with
182 additions
and
10 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
Add support for value ``max`` to ``NUMBA_OPT``. | ||
=============================================== | ||
|
||
The optimisation level that Numba applies when compiling can be set through the | ||
environment variable ``NUMBA_OPT``. This has historically been a value between | ||
0 and 3 (inclusive). Support for the value ``max`` has now been added, this is a | ||
Numba-specific optimisation level which indicates that the user would like Numba | ||
to try running the most optimisation possible, potentially trading a longer | ||
compilation time for better run-time performance. In practice, use of the ``max`` | ||
level of optimisation may or may not benefit the run-time or compile-time | ||
performance of user code, but it has been added to present an easy to access | ||
option for users to try if they so wish. |
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