nixpkgs/pkgs/applications/science/math/mxnet/default.nix

54 lines
1.7 KiB
Nix
Raw Normal View History

2019-02-03 15:32:14 +00:00
{ config, stdenv, lib, fetchurl, bash, cmake
, opencv3, gtest, blas, perl
2019-02-03 15:32:14 +00:00
, cudaSupport ? config.cudaSupport or false, cudatoolkit, nvidia_x11
, cudnnSupport ? cudaSupport, cudnn
2017-09-16 01:39:25 +00:00
}:
assert cudnnSupport -> cudaSupport;
stdenv.mkDerivation rec {
pname = "mxnet";
2020-04-01 15:46:17 +00:00
version = "1.6.0";
src = fetchurl {
url = "https://github.com/apache/incubator-mxnet/releases/download/${version}/apache-mxnet-src-${version}-incubating.tar.gz";
2020-04-01 15:46:17 +00:00
sha256 = "1vvdb7pfh63kb9fzs6gqp95q550a3ck4cj9mqxlk9wwhkh30dsq1";
2017-09-16 01:39:25 +00:00
};
nativeBuildInputs = [ cmake perl ];
2017-09-16 01:39:25 +00:00
2020-05-06 17:23:32 +00:00
buildInputs = [ opencv3 gtest blas.provider ]
2017-09-17 16:35:47 +00:00
++ lib.optionals cudaSupport [ cudatoolkit nvidia_x11 ]
2017-09-16 01:39:25 +00:00
++ lib.optional cudnnSupport cudnn;
2018-02-25 17:02:20 +00:00
cmakeFlags =
2019-06-02 17:11:58 +00:00
[ "-DUSE_MKL_IF_AVAILABLE=OFF" ]
++ (if cudaSupport then [
"-DUSE_OLDCMAKECUDA=ON" # see https://github.com/apache/incubator-mxnet/issues/10743
2018-02-25 17:02:20 +00:00
"-DCUDA_ARCH_NAME=All"
"-DCUDA_HOST_COMPILER=${cudatoolkit.cc}/bin/cc"
] else [ "-DUSE_CUDA=OFF" ])
++ lib.optional (!cudnnSupport) "-DUSE_CUDNN=OFF";
2017-09-16 01:39:25 +00:00
postPatch = ''
substituteInPlace 3rdparty/mkldnn/tests/CMakeLists.txt \
--replace "/bin/bash" "${bash}/bin/bash"
# Build against the system version of OpenMP.
# https://github.com/apache/incubator-mxnet/pull/12160
rm -rf 3rdparty/openmp
'';
postInstall = ''
rm "$out"/lib/*.a
2017-09-16 01:39:25 +00:00
'';
meta = with stdenv.lib; {
description = "Lightweight, Portable, Flexible Distributed/Mobile Deep Learning with Dynamic, Mutation-aware Dataflow Dep Scheduler";
homepage = "https://mxnet.incubator.apache.org/";
2017-09-16 01:39:25 +00:00
maintainers = with maintainers; [ abbradar ];
license = licenses.asl20;
platforms = platforms.linux;
};
}