Post
Topic
Board Development & Technical Discussion
Merits 7 from 2 users
Re: VanitySearch (Yet another address prefix finder)
by
hodld0r
on 12/02/2023, 04:40:39 UTC
⭐ Merited by NotATether (5) ,Husna QA (2)
Quote
maybe put some SSE or AVX in there somehow

https://en.cppreference.com/w/cpp/experimental/simd

A zero-overhead abstraction for the high-level language you are already using is so much nicer than spending a bunch of time writing your own architecture-specific routines in assembly or compiler intrinsics (std::simd itself being a simple template library implemented using intrinsics). Generally speaking at least