You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! I'm recently find that chain function in Swift Algorithms is really convenience tool for making better performance and still writing clear code. And because I was curious for how performance is improved, I made a performance test project. I found that, for chain(chain(x, y), z), there is great performance improvement. However, when it comes to chain(chain(chain(w, x), y), z), the performance becomes rapidly worse (still better than mere array addition though).
Swift Algorithms version:1.0.0 Swift version: swift-driver version: 1.75.2 Apple Swift version 5.8 (swiftlang-5.8.0.124.2 clang-1403.0.22.11.100) Target: x86_64-apple-macosx13.0
Checklist
If possible, I've reproduced the issue using the main branch of this package
// MARK: function used to test performancefunc takeSequence(_ sequence:someSequence<Int>){
for i in sequence {
_ = i +1}}
Like this, three patterns are tested. First is a+b, second is chain(a, b), and third is just a repetition of the same process. It is desired that the second and the third make similar performance, but when the argument increase more than four, the performance of the second pattern suddenly becomes much worse than the third pattern.
// MARK: test for 2 array chainingfunc testTake2ArrayAdditionPerformance()throws{measure{leta=Array(0..<100)letb=Array(100..<200)
for _ in 0..<1000000{takeSequence(a + b)}}}func testTake2ArrayChainPerformance()throws{measure{leta=Array(0..<100)letb=Array(100..<200)
for _ in 0..<1000000{takeSequence(chain(a, b))}}}func testTake2ArrayPerformance()throws{measure{leta=Array(0..<100)letb=Array(100..<200)
for _ in 0..<1000000{takeSequence(a)takeSequence(b)}}}
The text was updated successfully, but these errors were encountered:
Hi! I'm recently find that
chain
function in Swift Algorithms is really convenience tool for making better performance and still writing clear code. And because I was curious for how performance is improved, I made a performance test project. I found that, forchain(chain(x, y), z)
, there is great performance improvement. However, when it comes tochain(chain(chain(w, x), y), z)
, the performance becomes rapidly worse (still better than mere array addition though).The test code is available here. Sample result is also in README.md.
https://github.com/ensan-hcl/swift_chain_performance
Swift Algorithms version:
1.0.0
Swift version: swift-driver version: 1.75.2 Apple Swift version 5.8 (swiftlang-5.8.0.124.2 clang-1403.0.22.11.100) Target: x86_64-apple-macosx13.0
Checklist
main
branch of this packageSteps to Reproduce
For this function, I took performance test.
Like this, three patterns are tested. First is
a+b
, second ischain(a, b)
, and third is just a repetition of the same process. It is desired that the second and the third make similar performance, but when the argument increase more than four, the performance of the second pattern suddenly becomes much worse than the third pattern.The text was updated successfully, but these errors were encountered: