6 ms·
I've also been working on a compressor recently, and the same general idea (letting the compiler know that a data dependency occurs very infrequently, and it sh
by nonadhocproblem 2mo ago
I've also been working on a compressor recently, and the same general idea (letting the compiler know that a data dependency occurs very infrequently, and it should therefore assume none exists to exploit ILP) has allowed me to speed up my decompression by a lot:
https://github.com/welcome-to-the-sunny-side/misa77/blob/777f329b30653162ee0ba66fb42d838618d1b030/src/decompress_impl.h#L55-L56 https://github.com/welcome-to-the-sunny-side/misa77/blob/777...