From f2b0c1deab87da3b5aa4c1f2ef4d6af06fa4e32d Mon Sep 17 00:00:00 2001 From: Wouter Deconinck Date: Thu, 2 Feb 2023 16:03:01 -0600 Subject: py-minkowskiengine: new package (sparse tensor autodiff by Nvidia) (#35302) * py-minkowskiengine: new package (sparse tensor autodiff by Nvidia) This python package (with cuda support) provides torch support for sparse tensors. The `pybind11` headers are not found without the patch to `setup.py`. * [@spackbot] updating style on behalf of wdconinc * py-minkowskiengine: depends_on numpy, pybind11 type=link; no patch * [@spackbot] updating style on behalf of wdconinc --------- Co-authored-by: wdconinc --- .../builtin/packages/py-minkowskiengine/package.py | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 var/spack/repos/builtin/packages/py-minkowskiengine/package.py (limited to 'var') diff --git a/var/spack/repos/builtin/packages/py-minkowskiengine/package.py b/var/spack/repos/builtin/packages/py-minkowskiengine/package.py new file mode 100644 index 0000000000..778e952591 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-minkowskiengine/package.py @@ -0,0 +1,32 @@ +# Copyright 2013-2023 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.package import * + + +class PyMinkowskiengine(PythonPackage, CudaPackage): + """The MinkowskiEngine is an auto-differentiation + library for sparse tensors.""" + + homepage = "https://nvidia.github.io/MinkowskiEngine/" + pypi = "MinkowskiEngine/MinkowskiEngine-0.5.4.tar.gz" + + maintainers = ["wdconinc"] + + version("0.5.4", sha256="b1879c00d0b0b1d30ba622cce239886a7e3c78ee9da1064cdfe2f64c2ab15f94") + + depends_on("py-setuptools", type="build") + depends_on("py-pybind11", type="link") + + depends_on("py-numpy", type=("build", "run")) + depends_on("py-torch", type=("build", "run")) + + def install_options(self, spec, prefix): + options = [] + if spec.satisfies("+cuda"): + options.append("--force_cuda") + else: + options.append("--cpu_only") + return options -- cgit v1.2.3-70-g09d2