Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Faster iteration over RepeatedRangeMatrix
Given: ```jl R = RepeatedRangeMatrix(-500:500, 0:2000:10000000) f(X) = sum(x for x in X) ``` Before: ```jl julia> @Btime f($R) 110.123 ms (3 allocations: 128 bytes) ``` After: ```jl julia> @Btime f($R) 5.920 ms (4 allocations: 160 bytes) ```
- Loading branch information