You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I use vector<bitset<32>>, the performance significantly degrades compared to vector<uint32_t>. After inspecting the source code, I found that bitset involves a substantial amount of memory operations. Can this issue be addressed?
The text was updated successfully, but these errors were encountered:
When I use
vector<bitset<32>>
, the performance significantly degrades compared tovector<uint32_t>
. After inspecting the source code, I found thatbitset
involves a substantial amount of memory operations. Can this issue be addressed?The text was updated successfully, but these errors were encountered: