diff options
author | Dingwen Tao <ustc.dingwentao@gmail.com> | 2020-10-10 18:10:55 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-10 20:10:55 -0500 |
commit | 03b9f0452c4202a1415d68373e8d28ee53c7bc65 (patch) | |
tree | 5653dd1a42446785f0d3c887d4fd09b818451dc7 /var | |
parent | ac91328c69415f9b5f9ba134cec52cef5501b749 (diff) | |
download | spack-03b9f0452c4202a1415d68373e8d28ee53c7bc65.tar.gz spack-03b9f0452c4202a1415d68373e8d28ee53c7bc65.tar.bz2 spack-03b9f0452c4202a1415d68373e8d28ee53c7bc65.tar.xz spack-03b9f0452c4202a1415d68373e8d28ee53c7bc65.zip |
Add cuSZ (#19228)
Co-authored-by: Dingwen Tao <tao@cs.ua.edu>
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/cusz/package.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/cusz/package.py b/var/spack/repos/builtin/packages/cusz/package.py new file mode 100644 index 0000000000..c846c31320 --- /dev/null +++ b/var/spack/repos/builtin/packages/cusz/package.py @@ -0,0 +1,24 @@ +# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from spack import * + + +class Cusz(MakefilePackage): + """cuSZ is a CUDA-based error-bounded lossy compressor for scientific + data (floating point and integers). + """ + + homepage = "https://szcompressor.org" + url = "https://github.com/szcompressor/cuSZ/releases/download/v0.1.2/cuSZ-0.1.2.tar.gz" + git = "https://github.com/szcompressor/cuSZ" + maintainers = ['dingwentao', 'jtian0'] + + version('master', branch='master') + version('0.1.2', sha256='c6e89a26b295724edefc8052f62653c5a315c78eaf6d5273299a8e11a5cf7363') + + def install(self, spec, prefix): + mkdir(prefix.bin) + install('bin/cusz', prefix.bin) |