JHPCN-DF: added package at v1.1.0 (#16384)

This commit is contained in:
Toyohisa Kameyama 2020-04-30 22:03:35 +09:00 committed by GitHub
parent 6c751f931c
commit 54b71b2b69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,37 @@
# 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 JhpcnDf(CMakePackage):
"""
Data compression library based on Jointed Hierarchical Precision
Compression Number - Data Format
JHPCN-DF is a novel lossy compression algorithm taylored for floating
point dataset. The algorithm enhances the effect of employing standard
compression algorithms like deflate because this approach makes
the occurence rate of the same byte pattern in data stream higher owing
to truncating some lower bits of significand.
"""
homepage = "http://avr-aics-riken.github.io/JHPCN-DF/"
url = "https://github.com/avr-aics-riken/JHPCN-DF/archive/1.1.0.tar.gz"
version('1.1.0', sha256='106d99cc4faac5c76e51e8bfe3193c1d3dc91648072cf418d868ed830592b04b')
variant('lz4', default=False, description='Enable lz4')
variant('fortran', default=False, description='Enable Fortran Interface')
depends_on('zlib', type='link')
depends_on('lz4@:1.7', when='+lz4', type='link')
def cmake_args(self):
args = [
self.define_from_variant('with_Fortran_interface', 'fortran'),
self.define_from_variant('with_lz4', 'lz4')
]
return args