-
Notifications
You must be signed in to change notification settings - Fork 78
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
[FEA] Configure compression level/speed #81
Comments
Hi technillogue, In the case of GDeflate we do have a "high compression" mode. This is documented in include/nvcomp/gdeflate.h, and was designed for such use cases as yours where compression speed is less of a concern. We're also considering adding similar modes to zSTD in an upcoming release. -Eric |
This issue has been labeled |
Setting anything but 0 for Gdeflate gives: Invalid format_opts.algo value (high compression option (1) not currently supported) |
This issue has been labeled |
We changed the HLIF for 3.0 to call the LLIF. Now the other algorithms should work for the GDeflate HLIF. |
This issue has been labeled |
Is your feature request related to a problem? Please describe.
I'm using nvCOMP to load data from disk to GPU, and don't care about compression but do care about getting the best compression ratio possible.
Describe the solution you'd like
CompressionConfig has settings for each algorithm, for example gdeflate could max_hash_checks and lazy vs greedy matching.
Describe alternatives you've considered
If this is available through the low-level API, better documentation would be helpful.
The text was updated successfully, but these errors were encountered: