Skip to content
Snippets Groups Projects
Commit 20d830f8 authored by Denis Davydov's avatar Denis Davydov Committed by Peter Scheibel
Browse files

new package: dbcsr (#9491)

Also add its dependency, py-fypp
parent e219bc39
No related branches found
No related tags found
No related merge requests found
# Copyright 2013-2018 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 Dbcsr(CMakePackage):
"""Distributed Block Compressed Sparse Row matrix library."""
homepage = "https://github.com/cp2k/dbcsr"
url = "https://github.com/cp2k/dbcsr/archive/v1.0.0-rc.0.tar.gz"
version('develop', git='https://github.com/cp2k/dbcsr.git', branch='develop')
variant('mpi', default=True, description='Compile with MPI')
variant('openmp', default=False, description='Build with OpenMP support')
depends_on('blas')
depends_on('lapack')
depends_on('mpi', when='+mpi')
depends_on('py-fypp')
def cmake_args(self):
spec = self.spec
args = [
'-DUSE_MPI=%s' % ('ON' if '+mpi' in spec else 'OFF'),
'-DUSE_OPENMP=%s' % (
'ON' if '+openmp' in spec else 'OFF'),
'-DWITH_C_API=ON',
'-DLAPACK_FOUND=true',
'-DLAPACK_LIBRARIES=%s' % spec['lapack'].libs.joined(';'),
'-DBLAS_FOUND=true',
'-DBLAS_LIBRARIES=%s' % spec['blas'].libs.joined(';'),
'-DWITH_EXAMPLES=OFF',
'-DBUILD_SHARED_LIBS=ON'
]
return args
# Copyright 2013-2018 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 PyFypp(PythonPackage):
"""Python powered Fortran preprocessor."""
homepage = "https://github.com/aradi/fypp"
url = "https://github.com/aradi/fypp/archive/2.1.1.zip"
version('2.1.1', sha256='3744ad17045e91466bbb75a33ce0cab0f65bc2c377127067a932cdf15655e049')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment