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
FMM currently employs a single-pass method that effectively only uses fread(). This is fast, very flexible for integration, and has a fixed memory overhead for the loader itself. However it may leave some performance on the table on systems capable of parallel IO.
See PIGO which mmap()s the input file, scans it fully once to find line counts, then reads it.
mmap() does not apply to many situations that FMM currently handles, but may be useful as an option for cases where it does.
The text was updated successfully, but these errors were encountered:
FMM currently employs a single-pass method that effectively only uses
fread()
. This is fast, very flexible for integration, and has a fixed memory overhead for the loader itself. However it may leave some performance on the table on systems capable of parallel IO.See PIGO which
mmap()
s the input file, scans it fully once to find line counts, then reads it.mmap()
does not apply to many situations that FMM currently handles, but may be useful as an option for cases where it does.The text was updated successfully, but these errors were encountered: