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
See for example here. To lower memory requirements, fstlib allocates larger blocks of memory that are written to by several threads. In such cases, cache line pollution must be avoided.
A solution is to make sure each sub-block has a size that is a multiple of the cache line size (64 bytes on most modern Intel processors).
The text was updated successfully, but these errors were encountered:
See for example here. To lower memory requirements,
fstlib
allocates larger blocks of memory that are written to by several threads. In such cases, cache line pollution must be avoided.A solution is to make sure each sub-block has a size that is a multiple of the cache line size (64 bytes on most modern Intel processors).
The text was updated successfully, but these errors were encountered: