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
After calling zfp_stream_set_precision(stream, 64), zfp_stream_compression_mode(stream) returns zfp_mode_expert rather than the expected zfp_mode_fixed_precision. This is a result of zfp_stream_set_precision(stream, 64) not constraining any of the four expert-mode parameters, leaving them at their default values, which is a state currently considered expert mode. This behavior has an unintended effect on back-ends like CUDA that currently support fixed precision but not expert mode.
The text was updated successfully, but these errors were encountered:
After calling
zfp_stream_set_precision(stream, 64)
,zfp_stream_compression_mode(stream)
returnszfp_mode_expert
rather than the expectedzfp_mode_fixed_precision
. This is a result ofzfp_stream_set_precision(stream, 64)
not constraining any of the four expert-mode parameters, leaving them at their default values, which is a state currently considered expert mode. This behavior has an unintended effect on back-ends like CUDA that currently support fixed precision but not expert mode.The text was updated successfully, but these errors were encountered: