summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorJen Herting <jen@herting.cc>2020-10-30 15:36:49 -0400
committerGitHub <noreply@github.com>2020-10-30 14:36:49 -0500
commit05cd3c43801dc07c1807695082ada63a37040156 (patch)
tree4a230858474e77528ebfcc9a541cbe2020c98122 /var
parent724325f789abf109d9de31bf22403e98f77585cf (diff)
downloadspack-05cd3c43801dc07c1807695082ada63a37040156.tar.gz
spack-05cd3c43801dc07c1807695082ada63a37040156.tar.bz2
spack-05cd3c43801dc07c1807695082ada63a37040156.tar.xz
spack-05cd3c43801dc07c1807695082ada63a37040156.zip
New package: py-cudf (#19111)
* [py-cudf] created template * [py-cudf] set build directory * [py-cudf] adding dependencies * [py-cudf] fixed phases * [py-cudf] added cmake to fetch some third party dependencies * [py-cudf] flake8 * [py-cudf] added homepage and description. removed fixmes * [py-cudf] added dependency of py-cupy * [py-cudf] depends on py-fsspec * [py-cudf] py-pyarrow requires +orc * [py-cudf] py-pyarrow requires +parquet * [py-cudf] removed upper python limit * [py-cudf] checksum changed
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-cudf/package.py46
1 files changed, 46 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-cudf/package.py b/var/spack/repos/builtin/packages/py-cudf/package.py
new file mode 100644
index 0000000000..7d6e42db01
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-cudf/package.py
@@ -0,0 +1,46 @@
+# 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)
+
+import os
+from spack import *
+
+
+class PyCudf(PythonPackage):
+ """Built based on the Apache Arrow columnar memory format,
+ cuDF is a GPU DataFrame library for loading, joining,
+ aggregating, filtering, and otherwise manipulating data."""
+
+ homepage = "https://rapids.ai"
+ url = "https://github.com/rapidsai/cudf/archive/v0.15.0.tar.gz"
+
+ version('0.15.0', sha256='2570636b72cce4c52f71e36307f51f630e2f9ea94a1abc018d40ce919ba990e4')
+
+ build_directory = 'python/cudf'
+
+ depends_on('cmake@3.14:', type='build')
+ depends_on('python@3.6:', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')
+ depends_on('py-cython', type='build')
+ depends_on('py-numba@0.40.0:', type=('build', 'run'))
+ depends_on('py-numpy@1.14.4:', type=('build', 'run'))
+ depends_on('py-pyarrow+cuda+orc+parquet', type=('build', 'run'))
+ depends_on('py-pandas@0.23.4:', type=('build', 'run'))
+ depends_on('py-rmm', type=('build', 'run'))
+ depends_on('cuda@10:')
+ depends_on('py-cupy', type=('build', 'run'))
+ depends_on('py-fsspec', type=('build', 'run'))
+
+ for v in ('@0.15.0',):
+ depends_on('libcudf' + v, when=v)
+
+ phases = ['cmake', 'build_ext', 'install']
+
+ def cmake(self, spec, prefix):
+ cmake = which('cmake')
+
+ build_dir = os.path.join(self.stage.source_path, 'cpp', 'build')
+
+ with working_dir(build_dir, create=True):
+ cmake('..')