
* added package gptune with all its dependencies: adding py-autotune, pygmo, py-pyaml, py-autotune, py-gpy, py-lhsmdu, py-hpbandster, pagmo2, py-opentuner; modifying superlu-dist, py-scikit-optimize * adding gptune package * minor fix for macos spack test * update patch for py-scikit-optimize; update test files for gptune * fixing gptune package style error * fixing unit tests * a few changes reviewed in the PR * improved gptune package.py with a few newly added/improved dependencies * fixed a few style errors * minor fix on package name py-pyro4 * fixing more style errors * Update var/spack/repos/builtin/packages/py-scikit-optimize/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * resolved a few issues in the PR * fixing file permissions * a few minor changes * style correction * minor correction to jq package file * Update var/spack/repos/builtin/packages/py-pyro4/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * fixing a few issues in the PR * adding py-selectors34 required by py-pyro4 * improved the superlu-dist package * improved the superlu-dist package * moree changes to gptune and py-selectors34 based on the PR * Update var/spack/repos/builtin/packages/py-selectors34/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
36 lines
1.2 KiB
Python
36 lines
1.2 KiB
Python
# Copyright 2013-2021 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 Pygmo(CMakePackage):
|
|
"""Parallel Global Multiobjective Optimizer (and its Python alter ego
|
|
PyGMO) is a C++ / Python platform to perform parallel computations of
|
|
optimisation tasks (global and local) via the asynchronous generalized
|
|
island model."""
|
|
|
|
homepage = "https://esa.github.io/pygmo2/"
|
|
url = "https://github.com/esa/pygmo2/archive/v2.18.0.tar.gz"
|
|
git = "https://github.com/esa/pygmo2.git"
|
|
|
|
version('master', branch='master')
|
|
version('2.18.0', sha256='9f081cc973297894af09f713f889870ac452bfb32b471f9f7ba08a5e0bb9a125')
|
|
|
|
depends_on('pagmo2', type=('build', 'link'))
|
|
depends_on('mpi', type='build')
|
|
depends_on('py-pybind11@2.6.0:2.6.2', type='build')
|
|
depends_on('cmake@3.1:', type='build')
|
|
|
|
variant('shared', default=True, description='Build shared libraries')
|
|
|
|
def cmake_args(self):
|
|
|
|
args = [
|
|
self.define_from_variant('BUILD_SHARED_LIBS', 'shared'),
|
|
]
|
|
|
|
return args
|