summary refs log tree commit diff
path: root/pkgs/development/python-modules/libgpuarray/default.nix
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2017-09-17 18:02:20 +0300
committerNikolay Amiantov <ab@fmap.me>2017-10-19 12:47:30 +0300
commitefd2444de5663df1cad443f41d4bfec4a1745f28 (patch)
tree80a94766129fc69a3b15e27de9b26cd899b4b76d /pkgs/development/python-modules/libgpuarray/default.nix
parent50a223b1446224d4fb0144ecd13c2a2d9955a156 (diff)
downloadnixlib-efd2444de5663df1cad443f41d4bfec4a1745f28.tar
nixlib-efd2444de5663df1cad443f41d4bfec4a1745f28.tar.gz
nixlib-efd2444de5663df1cad443f41d4bfec4a1745f28.tar.bz2
nixlib-efd2444de5663df1cad443f41d4bfec4a1745f28.tar.lz
nixlib-efd2444de5663df1cad443f41d4bfec4a1745f28.tar.xz
nixlib-efd2444de5663df1cad443f41d4bfec4a1745f28.tar.zst
nixlib-efd2444de5663df1cad443f41d4bfec4a1745f28.zip
python.pkgs.libgpuarray: -9998.0 -> 0.6.9
Diffstat (limited to 'pkgs/development/python-modules/libgpuarray/default.nix')
-rw-r--r--pkgs/development/python-modules/libgpuarray/default.nix81
1 files changed, 81 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/libgpuarray/default.nix b/pkgs/development/python-modules/libgpuarray/default.nix
new file mode 100644
index 000000000000..3c24c2ed24cb
--- /dev/null
+++ b/pkgs/development/python-modules/libgpuarray/default.nix
@@ -0,0 +1,81 @@
+{ stdenv 
+, lib
+, buildPythonPackage
+, fetchFromGitHub
+, cmake
+, cython
+, numpy
+, six
+, nose
+, Mako
+, python
+, cudaSupport ? false, cudatoolkit
+, openclSupport ? true, ocl-icd, clblas
+}: 
+
+buildPythonPackage rec {
+  name = "libgpuarray-${version}";
+  version = "0.6.9";
+
+  src = fetchFromGitHub {
+    owner = "Theano"; 
+    repo = "libgpuarray";
+    rev = "v${version}";
+    sha256 = "06z47ls42a37gbv0x7f3l1qvils7q0hvy02s95l530klgibp19s0";
+  }; 
+
+  # requires a GPU
+  doCheck = false;
+
+  configurePhase = "cmakeConfigurePhase";
+
+  libraryPath = lib.makeLibraryPath (
+    []
+    ++ lib.optionals cudaSupport [ cudatoolkit.lib cudatoolkit.out ]
+    ++ lib.optionals openclSupport [ ocl-icd clblas ]
+  );
+
+  preBuild = ''
+    make -j$NIX_BUILD_CORES
+    make install
+
+    ls $out/lib
+    export NIX_CFLAGS_COMPILE="-L $out/lib -I $out/include $NIX_CFLAGS_COMPILE"
+
+    cd ..
+  ''; 
+
+  postFixup = ''
+    rm $out/lib/libgpuarray-static.a
+
+    function fixRunPath {
+      p=$(patchelf --print-rpath $1)
+      patchelf --set-rpath "$p:$libraryPath" $1
+    }
+
+    fixRunPath $out/lib/libgpuarray.so
+  '';
+
+  propagatedBuildInputs = [
+    numpy
+    six
+    Mako
+  ];
+
+  enableParallelBuilding = true;
+
+  buildInputs = [ 
+    cmake 
+    cython 
+    nose
+  ]; 
+
+  meta = with stdenv.lib; {
+    homepage = "https://github.com/Theano/libgpuarray";
+    description = "Library to manipulate tensors on GPU.";
+    license = licenses.free;
+    maintainers = with maintainers; [ artuuge ];
+    platforms = platforms.linux;
+  };
+
+}