mzaks
π Joined in 2016
πΌ 23 Karma
βοΈ 15 posts
Load more
(Replying to PARENT post)
(Replying to PARENT post)
(Replying to PARENT post)
(Replying to PARENT post)
(Replying to PARENT post)
(Replying to PARENT post)
The blog post is in deed titled "10,000 times faster Swift". I though it will be a catchy title even though 6 seconds to 0.35 ms is not factor of 10,000.
I thought about renaming the title to 500 times faster Swift, which would be rathe more accurate insight of current findings, but than what the hack. It's a blog post. I didn't published a scientific paper. I just reflected on my resent work.
The main points of the Blog posts wehere anyways about how it is possible to make low level optimisations to make Swift programs faster. And as a matter of fact the Loop-invariant code motion was a valid technique to get the same result. Result being sum of payload content. The compiler was smarter than me. It gave me the same result doing 250times less work. I find it impressive.
I must be honest I am not fluent in assembly this is why I could not figure it out by myself.
Was I suspicious? Absolutely!!! But the facts were in my face.
Shouldn't I publish an article, where I am not sure why I got what I got? If I wouldn't publish the article, I would not figured out the truth and wouldn't learned form this experience.
And after all, this post is about performance pitfalls in Swift language. The comparison with C was almost accidental. I would compare it with C++ if I would have a Windows machine, as the benchmark for C++ project has Windows specific code. I also consulted with the author of flatcc, who is much more relaxed about my blog post than you are :)
This blog post is about learning something. I learned something before I wrote this post I shared it and now I learned even more.
You should try it yourself.
Maybe not as satisfying as criticising, but it also has it's moments.
(Replying to PARENT post)
for i in 0..<iterations {
let result = flatuseStruct(outputData, start:i)
assert(result == 8644311666 + Int(i))
total2 = total2 + UInt64(result)
}
this results in around 42ms compared to C 25ms. I guess I should update my blog post :)Thanks for your help.
(Replying to PARENT post)
Changed the iteration to:
for i in 0..<iterations {
let result = flatuseStruct(outputData, start:i)
assert(result == 8644311666 + Int(i))
total2 = total2 + UInt64(result)
}
now result is around 43msThanks for pointing it out. Have to check if there are so other things involved, but that might be it.
(Replying to PARENT post)
function called for decode+use+dealloc https://github.com/mzaks/FlatBuffersSwift/blob/master/FlatBu...
function called for direct: https://github.com/mzaks/FlatBuffersSwift/blob/master/FlatBu...
function called for using struct: https://github.com/mzaks/FlatBuffersSwift/blob/master/FlatBu...
Everything is on Github, you are welcome to try it out on your own machine.
(Replying to PARENT post)
https://gist.github.com/mzaks/e3a2dc7ccdfc2397bc26c55eb6dc8a...
the output is now:
Eager run
=================================
1557 ms encode
264 ms decode
34 ms use
206 ms dealloc
504 ms decode+use+dealloc
0,38 ms direct
0,32 ms using struct
=================================
Total counter1 is 8644311667000000
Total counter2 is 8644311667000000
Total counter3 is 8644311667000000
Encoded size is 315 bytes, should be 344 if not using unique strings
=================================
As you can see all three counters are equal.