show/hide this revision's text 2 fixed spelling and grammar

I'v written two assembly "optimized" functions in Delphi, or more implemented known fast hash algorithms in both fine-tuned pascal and Borland Assembler. The first was a implementation of SuperFastHash, and the second was a MurmurHash2 implementation triggered by a request from Tommi Prami on my blog to translate my c# version to a pascal implementation. This spawned a discussion carried continued on the Embarcadero Discussion BASM Forums, that discussion in the end resulted in about 20 implementation implementations (check the latest benchmark suite) which ultimately showed that it would be difficult to select the best implementation due to the big differences in cycle times per instruction between Intel and AMD.

So, try one of those, but remember, getting the fastest every time would probably mean changing the algorithm to a simpler one which would hurt your distribution. Fine-tunning a implementation takes lots of time and better create a good validation and benchmarking suite to make check your implementations.

show/hide this revision's text 1

I'v written two assembly "optimized" functions in Delphi, or more implemented known fast hash algorithms in both fine-tuned pascal and Borland Assembler. The first was a implementation of SuperFastHash, and the second was a MurmurHash2 implementation triggered by a request from Tommi Prami on my blog to translate my c# version to a pascal implementation. This spawned a discussion carried on the Embarcadero Discussion BASM Forums, that discussion resulted in about 20 implementation (check the latest benchmark suite) which ultimately showed that it would be difficult to select the best implementation due to the big differences in cycle times per instruction between Intel and AMD.

So, try one of those, but remember, getting the fastest every time would probably mean changing the algorithm to a simpler one which would hurt your distribution. Fine-tunning a implementation takes lots of time and better create a good validation and benchmarking suite to make check your implementations.