clblas: 20160505 -> 2.12
This commit is contained in:
parent
57f82de364
commit
50a223b144
@ -1,73 +0,0 @@
|
|||||||
{ stdenv
|
|
||||||
, fetchFromGitHub
|
|
||||||
, cmake
|
|
||||||
, gfortran
|
|
||||||
, blas
|
|
||||||
, boost
|
|
||||||
, python
|
|
||||||
, ocl-icd
|
|
||||||
, cudatoolkit
|
|
||||||
, nvidia_x11
|
|
||||||
, gtest
|
|
||||||
}:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
name = "clblas-cuda-${version}";
|
|
||||||
version = "git-20160505";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "clMathLibraries";
|
|
||||||
repo = "clBLAS";
|
|
||||||
rev = "d20977ec4389c6b3751e318779410007c5e272f8";
|
|
||||||
sha256 = "1jna176cxznv7iz43svd6cjrbbf0fc2lrbpfpg4s08vc7xnwp0n4";
|
|
||||||
};
|
|
||||||
|
|
||||||
patches = [ ./platform.patch ];
|
|
||||||
|
|
||||||
postPatch = ''
|
|
||||||
sed -i -re 's/(set\(\s*Boost_USE_STATIC_LIBS\s+).*/\1OFF\ \)/g' src/CMakeLists.txt
|
|
||||||
'';
|
|
||||||
|
|
||||||
configurePhase = ''
|
|
||||||
findInputs ${boost.dev} boost_dirs propagated-native-build-inputs
|
|
||||||
|
|
||||||
export BOOST_INCLUDEDIR=$(echo $boost_dirs | sed -e s/\ /\\n/g - | grep '\-dev')/include
|
|
||||||
export BOOST_LIBRARYDIR=$(echo $boost_dirs | sed -e s/\ /\\n/g - | grep -v '\-dev')/lib
|
|
||||||
|
|
||||||
mkdir -p Build
|
|
||||||
pushd Build
|
|
||||||
|
|
||||||
export LD_LIBRARY_PATH="${stdenv.lib.makeLibraryPath [ blas nvidia_x11 ]}"
|
|
||||||
|
|
||||||
cmake ../src -DCMAKE_INSTALL_PREFIX=$out \
|
|
||||||
-DCMAKE_BUILD_TYPE=Release \
|
|
||||||
-DOPENCL_ROOT=${cudatoolkit} \
|
|
||||||
-DUSE_SYSTEM_GTEST=ON
|
|
||||||
'';
|
|
||||||
|
|
||||||
dontStrip = true;
|
|
||||||
|
|
||||||
buildInputs = [
|
|
||||||
cmake
|
|
||||||
gfortran
|
|
||||||
blas
|
|
||||||
python
|
|
||||||
ocl-icd
|
|
||||||
cudatoolkit
|
|
||||||
nvidia_x11
|
|
||||||
gtest
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
|
||||||
homepage = https://github.com/clMathLibraries/clBLAS;
|
|
||||||
description = "A software library containing BLAS functions written in OpenCL";
|
|
||||||
longDescription = ''
|
|
||||||
This package contains a library of BLAS functions on top of OpenCL.
|
|
||||||
The current version is linked to the NVIDIA OpenCL implementation provided by the CUDA toolkit.
|
|
||||||
'';
|
|
||||||
license = licenses.asl20;
|
|
||||||
maintainers = with maintainers; [ artuuge ];
|
|
||||||
platforms = platforms.linux;
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
62
pkgs/development/libraries/science/math/clblas/default.nix
Normal file
62
pkgs/development/libraries/science/math/clblas/default.nix
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
{ stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, cmake
|
||||||
|
, gfortran
|
||||||
|
, blas
|
||||||
|
, boost
|
||||||
|
, python
|
||||||
|
, ocl-icd
|
||||||
|
, opencl-headers
|
||||||
|
, gtest
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "clblas-${version}";
|
||||||
|
version = "2.12";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "clMathLibraries";
|
||||||
|
repo = "clBLAS";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "154mz52r5hm0jrp5fqrirzzbki14c1jkacj75flplnykbl36ibjs";
|
||||||
|
};
|
||||||
|
|
||||||
|
patches = [ ./platform.patch ];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
sed -i -re 's/(set\(\s*Boost_USE_STATIC_LIBS\s+).*/\1OFF\ \)/g' src/CMakeLists.txt
|
||||||
|
'';
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
cd src
|
||||||
|
'';
|
||||||
|
|
||||||
|
cmakeFlags = [
|
||||||
|
"-DUSE_SYSTEM_GTEST=ON"
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
cmake
|
||||||
|
gfortran
|
||||||
|
blas
|
||||||
|
python
|
||||||
|
ocl-icd
|
||||||
|
opencl-headers
|
||||||
|
boost
|
||||||
|
gtest
|
||||||
|
];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://github.com/clMathLibraries/clBLAS";
|
||||||
|
description = "A software library containing BLAS functions written in OpenCL";
|
||||||
|
longDescription = ''
|
||||||
|
This package contains a library of BLAS functions on top of OpenCL.
|
||||||
|
'';
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ artuuge ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -18346,10 +18346,7 @@ with pkgs;
|
|||||||
|
|
||||||
blas = callPackage ../development/libraries/science/math/blas { };
|
blas = callPackage ../development/libraries/science/math/blas { };
|
||||||
|
|
||||||
clblas-cuda = callPackage ../development/libraries/science/math/clblas/cuda {
|
clblas = callPackage ../development/libraries/science/math/clblas { };
|
||||||
cudatoolkit = pkgs.cudatoolkit75;
|
|
||||||
inherit (linuxPackages) nvidia_x11;
|
|
||||||
};
|
|
||||||
|
|
||||||
jags = callPackage ../applications/science/math/jags { };
|
jags = callPackage ../applications/science/math/jags { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user