diff options
author | Mark C. Miller <miller86@llnl.gov> | 2018-02-27 12:49:04 -0800 |
---|---|---|
committer | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2018-02-27 21:49:04 +0100 |
commit | 0e326c96873bc5f18d0ce33c2c68a7b90b8b7130 (patch) | |
tree | e9e03b92fe1b759bafd1040d769be9eb5d31aa82 | |
parent | 5689fd304c6c4df3679c6bb58f8b6e65ea5072a1 (diff) | |
download | spack-0e326c96873bc5f18d0ce33c2c68a7b90b8b7130.tar.gz spack-0e326c96873bc5f18d0ce33c2c68a7b90b8b7130.tar.bz2 spack-0e326c96873bc5f18d0ce33c2c68a7b90b8b7130.tar.xz spack-0e326c96873bc5f18d0ce33c2c68a7b90b8b7130.zip |
updating zfp version (#7304)
-rw-r--r-- | var/spack/repos/builtin/packages/zfp/package.py | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/var/spack/repos/builtin/packages/zfp/package.py b/var/spack/repos/builtin/packages/zfp/package.py index 704dc9dc72..25d6a53bc2 100644 --- a/var/spack/repos/builtin/packages/zfp/package.py +++ b/var/spack/repos/builtin/packages/zfp/package.py @@ -26,18 +26,15 @@ from spack import * class Zfp(MakefilePackage): - """zfp is an open source C library for compressed floating-point arrays - that supports very high throughput read and write random acces, - target error bounds or bit rates. Although bit-for-bit lossless - compression is not always possible, zfp is usually accurate to - within machine epsilon in near-lossless mode, and is often orders - of magnitude more accurate than other lossy compressors. Versions - of zfp 0.5.1 or newer also support compression of integer data. + """zfp is an open source C/C++ library for high-fidelity, high-throughput + lossy compression of floating-point and integer multi-dimensional + arrays. """ homepage = 'http://computation.llnl.gov/projects/floating-point-compression' - url = 'http://computation.llnl.gov/projects/floating-point-compression/download/zfp-0.5.1.tar.gz' + url = 'http://computation.llnl.gov/projects/floating-point-compression/download/zfp-0.5.2.tar.gz' + version('0.5.2', '2f0a77aa34087219a6e10b8b7d031e77') version('0.5.1', '0ed7059a9b480635e0dd33745e213d17') version('0.5.0', '2ab29a852e65ad85aae38925c5003654') |