2017-08-28 09:33:16 +01:00
|
|
|
{ buildPythonPackage
|
2021-04-23 01:40:58 +01:00
|
|
|
, addOpenGLRunpath
|
2017-08-28 09:33:16 +01:00
|
|
|
, fetchPypi
|
2016-06-14 23:47:55 +01:00
|
|
|
, fetchFromGitHub
|
2017-08-28 09:33:16 +01:00
|
|
|
, Mako
|
2016-06-14 23:47:55 +01:00
|
|
|
, boost
|
|
|
|
, numpy
|
|
|
|
, pytools
|
|
|
|
, pytest
|
|
|
|
, decorator
|
|
|
|
, appdirs
|
|
|
|
, six
|
|
|
|
, cudatoolkit
|
|
|
|
, python
|
|
|
|
, mkDerivation
|
2021-01-24 00:29:22 +00:00
|
|
|
, lib
|
2016-06-14 23:47:55 +01:00
|
|
|
}:
|
|
|
|
let
|
|
|
|
compyte = import ./compyte.nix {
|
|
|
|
inherit mkDerivation fetchFromGitHub;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
buildPythonPackage rec {
|
2016-11-14 11:22:21 +00:00
|
|
|
pname = "pycuda";
|
2020-10-16 04:00:52 +01:00
|
|
|
version = "2020.1";
|
2016-06-14 23:47:55 +01:00
|
|
|
|
2017-08-28 09:33:16 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-10-16 04:00:52 +01:00
|
|
|
sha256 = "effa3b99b55af67f3afba9b0d1b64b4a0add4dd6a33bdd6786df1aa4cc8761a5";
|
2016-11-14 11:22:21 +00:00
|
|
|
};
|
2016-06-14 23:47:55 +01:00
|
|
|
|
2021-01-24 00:29:22 +00:00
|
|
|
preConfigure = with lib.versions; ''
|
2017-08-28 09:33:16 +01:00
|
|
|
${python.interpreter} configure.py --boost-inc-dir=${boost.dev}/include \
|
|
|
|
--boost-lib-dir=${boost}/lib \
|
|
|
|
--no-use-shipped-boost \
|
2020-05-17 20:43:24 +01:00
|
|
|
--boost-python-libname=boost_python${major python.version}${minor python.version} \
|
|
|
|
--cuda-root=${cudatoolkit}
|
2016-06-14 23:47:55 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
2017-08-28 09:33:16 +01:00
|
|
|
ln -s ${compyte} $out/${python.sitePackages}/pycuda/compyte
|
2016-06-14 23:47:55 +01:00
|
|
|
'';
|
|
|
|
|
2021-04-23 01:40:58 +01:00
|
|
|
postFixup = ''
|
|
|
|
find $out/lib -type f \( -name '*.so' -or -name '*.so.*' \) | while read lib; do
|
|
|
|
echo "setting opengl runpath for $lib..."
|
|
|
|
addOpenGLRunpath "$lib"
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2016-11-14 11:22:21 +00:00
|
|
|
# Requires access to libcuda.so.1 which is provided by the driver
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
py.test
|
|
|
|
'';
|
2016-06-15 15:24:21 +01:00
|
|
|
|
2021-04-23 01:40:58 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
addOpenGLRunpath
|
|
|
|
];
|
|
|
|
|
2016-06-14 23:47:55 +01:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
numpy
|
|
|
|
pytools
|
|
|
|
pytest
|
|
|
|
decorator
|
|
|
|
appdirs
|
|
|
|
six
|
|
|
|
cudatoolkit
|
|
|
|
compyte
|
|
|
|
python
|
2017-08-28 09:33:16 +01:00
|
|
|
Mako
|
|
|
|
];
|
2016-06-14 23:47:55 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/inducer/pycuda/";
|
2016-06-14 23:47:55 +01:00
|
|
|
description = "CUDA integration for Python.";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ artuuge ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|