mastodon.gamedev.place is one of the many independent Mastodon servers you can use to participate in the fediverse.
Mastodon server focused on game development and related topics.

Server stats:

5.4K
active users

Hmm, generating good hashes for use in simplex noise is surprisingly expensive. Has anyone ever tried using the CRC32 instructions that come with SSE4.2 for this? They only take 1 clock cycle, much faster than anything I've come up with.

I tried. It's bad. It *is* faster than permutation tables though.

Bottom center panel is my attempt.

AES instructions don't fare any better.

I guess I should bring out a profiler and actually see where the bottlenecks are.

Meanwhile, if someone knows a fast hash that takes 128 bits as input (x: i32, y: i32, seed: u64), works in AVX __mm256i registers and has good entropy in the lower bits, I'm all ears.

@bitinn Thanks, that's the sort of thing I was looking for. XXH3 doesn't beat the permutation table for performance (38 ms total runtime instead of 34 ms), but the visual quality is good.