
* ZFP: CMake Package ZFP is primarily build via CMake, which will have all install logic and configuration files generated. The 0.5.0 release did not support this yet, so we toss it. * Patch ADIOS1: ZFP 0.5.1+ support * ZFP: Expose all CMake variants
23 lines
808 B
Diff
23 lines
808 B
Diff
diff --git a/src/transforms/adios_transform_zfp_common.h b/src/transforms/adios_transform_zfp_common.h
|
|
index e453d078..681198ee 100644
|
|
--- a/src/transforms/adios_transform_zfp_common.h
|
|
+++ b/src/transforms/adios_transform_zfp_common.h
|
|
@@ -146,7 +146,7 @@ static void zfp_initialize(void* array, struct zfp_buffer* zbuff)
|
|
zbuff->error = true;
|
|
return;
|
|
}
|
|
- zfp_stream_set_accuracy(zbuff->zstream, tol, zbuff->type);
|
|
+ zfp_stream_set_accuracy(zbuff->zstream, tol);
|
|
}
|
|
else if (zbuff->mode == 1) // precision
|
|
{
|
|
@@ -172,7 +172,7 @@ static void zfp_initialize(void* array, struct zfp_buffer* zbuff)
|
|
tol = (uint) ct;
|
|
|
|
|
|
- zfp_stream_set_precision(zbuff->zstream, tol, zbuff->type);
|
|
+ zfp_stream_set_precision(zbuff->zstream, tol);
|
|
}
|
|
else if (zbuff->mode == 2) // rate
|
|
{
|