131b8b9b8b
* python37Packages.cupy: 5.2.0 -> 5.3.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-cupy/versions * pythonPackages.cupy: use default gcc instead of gcc5 * pythonPackages.cupy: build with CUDA10.0 * pythonPackages.cupy: 5.3.0 -> 5.4.0
43 lines
834 B
Nix
43 lines
834 B
Nix
{ stdenv, buildPythonPackage
|
|
, fetchPypi, isPy3k, linuxPackages
|
|
, fastrlock, numpy, six, wheel, pytest, mock
|
|
, cudatoolkit, cudnn, nccl
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cupy";
|
|
version = "5.4.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1qms1kmzr543hz30jmcmx20cf9xbgzl97a9k44xizsk785dwakbn";
|
|
};
|
|
|
|
checkInputs = [
|
|
pytest
|
|
mock
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
cudatoolkit
|
|
cudnn
|
|
linuxPackages.nvidia_x11
|
|
nccl
|
|
fastrlock
|
|
numpy
|
|
six
|
|
wheel
|
|
];
|
|
|
|
# In python3, test was failed...
|
|
doCheck = !isPy3k;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A NumPy-compatible matrix library accelerated by CUDA";
|
|
homepage = https://cupy.chainer.org/;
|
|
license = licenses.mit;
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = with maintainers; [ hyphon81 ];
|
|
};
|
|
}
|