-
Notifications
You must be signed in to change notification settings - Fork 188
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When running against a directory, memcpy only runs once #28
Comments
My intention was to use |
I see, I guess it makes sense. One caveat is that So you can get weird results, like if the first file is big, you might get a RAM-bound Currently I guess it isn't much of an issue because most compression algos are CPU-bound at a speed lower than memory bandwidth and perform generally the same regardless of whether the working set fits in cache or not, so it's not too visible... |
I guess I would kind of expect the |
When using
To run against a directory,
memcpy
only runs once:Presumably the intent is for
memcpy
to run against all the files, like the other algos.The text was updated successfully, but these errors were encountered: