Improve the performance of RollingWindow.GetEnumerator #8444
+8
−6
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This optimises the
RollingWindow.GetEnumerator
method in terms of execution time and memory allocation.Related Issue
#8443
Motivation and Context
The
RollingWindow.GetEnumerator
method allocates a new list for each invocation and copies values to the list via this[int], which in turn enters/exits reader lock for each invocation. I was able to speed up this method by more than 50% in terms of execution time and achieve marginally better memory consumption by switching fromList<T>
toT[]
and inlining the respective part ofthis[int]
.Many built-in indicators as well as some reasonable real-world use cases for RollingWindow would benefit from this change in backtesting/optimisation.
Requires Documentation Change
No
How Has This Been Tested?
Benchmark code
Several options were considered:
Baseline
: currentRollingWindow
implementation inmaster
ToArray
: changedList<T>
toT[]
ToArrayInlinedIndexer
: manually inlined the appropriate part of thethis[int]
indexerToArrayInlinedIndexerReversed
: changedfor
loop to the reversed version (iterating with counter being decremented)Benchmarking results for
RollingWindow
of size 100:Benchmarking results for
RollingWindow
of size 10:Types of changes
Checklist:
bug-<issue#>-<description>
orfeature-<issue#>-<description>