-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for non-Tuple iterators, improve docs and tests
- Loading branch information
1 parent
91a30eb
commit 2d9aa51
Showing
25 changed files
with
2,182 additions
and
442 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,7 @@ jobs: | |
matrix: | ||
version: | ||
- '1.10' | ||
- '~1.11.0-0' | ||
os: | ||
- ubuntu-latest | ||
- macOS-latest | ||
|
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,60 @@ | ||
The following autogenerated tables contain a representative set of potential use | ||
cases for this package, along with measurements that summarize each case's | ||
performance, compilation, and memory usage: | ||
- run time (best of several trial measurements) | ||
- compilation time (as reported by the compiler) | ||
- overall level of optimization (type stability, constant propagation, etc.) and | ||
allocations during run time (as reported by the garbage collector) | ||
- total allocations during compilation and first run (as reported by the garbage | ||
collector and, when possible, the Julia process's resident set size estimator) | ||
|
||
The rows of the tables are highlighted as follows: | ||
- ```@raw html | ||
<span style="color:darkturquoise">light blue </span> | ||
``` | ||
indicates an improvement in performance due to better optimization and either | ||
an improvement or no change in compilation time and total allocations | ||
- ```@raw html | ||
<span style="color:royalblue">dark blue </span> | ||
``` | ||
indicates an improvement in performance due to better optimization and either | ||
slower compilation or more total allocations | ||
- ```@raw html | ||
<span style="color:mediumseagreen">green </span> | ||
``` | ||
indicates either faster run time or fewer allocations during run time and | ||
either an improvement or no change in compilation time and total allocations | ||
- ```@raw html | ||
<span style="color:khaki">yellow </span> | ||
``` | ||
indicates either faster run time or fewer allocations during run time and | ||
either slower compilation or more total allocations | ||
- ```@raw html | ||
<span style="color:mediumorchid">magenta </span> | ||
``` | ||
indicates no change in performance and either an improvement or no change in | ||
compilation time and total allocations | ||
- ```@raw html | ||
<span style="color:silver">light gray </span> | ||
``` | ||
indicates no change in performance and either faster compilation with more | ||
total allocations or slower compilation with fewer total allocations | ||
- ```@raw html | ||
<span style="color:gray">dark gray </span> | ||
``` | ||
indicates no change in performance and no change in compilation time and total | ||
allocations | ||
- ```@raw html | ||
<span style="color:indianred">red </span> | ||
``` | ||
indicates a deterioration in performance, or no change in performance and | ||
either slower compilation or more total allocations | ||
|
||
Rows highlighted in gray present no clear advantage to unrolling, while those | ||
highlighted in red present a clear disadvantage. It is recommended that you only | ||
unroll when your use case is similar to a row in one of the remaining | ||
categories, each of which demonstrates some advantage to unrolling. | ||
|
||
The tables are also printed out by this package's test suite, so they can be | ||
compared across different operating systems by consulting the | ||
[CI pipeline](https://github.com/CliMA/UnrolledUtilities.jl/actions/workflows/ci.yml). |
Oops, something went wrong.