Davidah121 / SMPL

A static C++ library that encompasses all of the tools I have made to make development easier.
1 stars 0 forks source link

Additional speedup for deflate #117

Closed Davidah121 closed 4 months ago

Davidah121 commented 2 years ago

Any additional speedup that can be obtained should be done. Currently, hashmaps could use some speedup and not just relying on multiple threads.

Davidah121 commented 2 years ago

Some notes about what takes the most time. Currently, Searching takes a good portion of the time. Deleting elements takes time. In the current implementation, deletion does not actually occur. Using SSE for comparisons and/or using integers to compare can be much faster.