Show HN: Fast integer compression library in C
1–9 of 9 posts
Re: Show HN: Fast integer compression library in C
#2Re: Show HN: Fast integer compression library in C
#3Re: Show HN: Fast integer compression library in C
#4Re: Show HN: Fast integer compression library in C
#5edit: Apparently this isn't actually a SIMD implementation, so it's basically just a variant of delta compression with no particular advantage (or disadvantage).
Re: Show HN: Fast integer compression library in C
#6Weird name (cruppstahl, nor for). To me it has third Reich connotations...
Re: Show HN: Fast integer compression library in C
#7Faster version with SIMD instructions: https://github.com/lemire/simdcomp
Re: Show HN: Fast integer compression library in C
#8Weird name (cruppstahl, nor for). To me it has third Reich connotations...
Absolutely not for me.
The background is that Hitler used "Hart wie Kruppstahl, zäh wie Leder, flink wie ein Windhund" (Hard as Steel from Krupp, tough as leather, fast as a greyhound) in a bunch of speeches about how to model the german youth. Additionally Krupp Stahl was using forced labour during the war.
Re: Show HN: Fast integer compression library in C
#9Interesting, this seems to be a SIMD-optimized implementation of delta compression (or very similar, anyway). That's a clever idea. edit: Apparently this isn't actually a SIMD implementation, so it's basically just a variant of delta compression with no particular advantage (or disadvantage).