summary refs log tree commit diff
path: root/pkgs/development/libraries/science/math/amd-libflame/default.nix
blob: b28fa43a2269df94bd4af2dddc6213081dbd968e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{ lib
, stdenv
, fetchFromGitHub
, gfortran
, python3
, amd-blis

, withOpenMP ? true
}:

stdenv.mkDerivation rec {
  pname = "amd-libflame";
  version = "3.0";

  src = fetchFromGitHub {
    owner = "amd";
    repo = "libflame";
    rev = version;
    hash = "sha256-jESae5NqANw90RBbIHH2oGEq5/mudc4IONv50P/AeQ0=";
  };

  patches = [
    # The LAPACKE interface is compiled as a separate static library,
    # we want the main dynamic library to provide LAPACKE symbols.
    # This patch adds lapacke.a to the shared library as well.
    ./add-lapacke.diff
  ];

  nativeBuildInputs = [ gfortran python3 ];

  buildInputs = [ amd-blis ];

  configureFlags = [
    # Build a dynamic library with a LAPACK interface.
    "--disable-static-build"
    "--enable-dynamic-build"
    "--enable-lapack2flame"

    # Use C BLAS interface.
    "--enable-cblas-interfaces"

    # Avoid overloading maximum number of arguments.
    "--enable-max-arg-list-hack"

    # libflame by default leaves BLAS symbols unresolved and leaves it
    # up to the application to explicitly link to a BLAS. This is
    # problematic for us, since then the BLAS library becomes an
    # implicit dependency. Moreover, since the point of the AMD forks
    # is to optimized for recent AMD CPUs, link against AMD BLIS.
    "LDFLAGS=-lcblas"
  ]
  ++ lib.optionals withOpenMP [ "--enable-multithreading=openmp" ];

  enableParallelBuilding = true;

  postPatch = ''
    patchShebangs build
  '';

  postInstall = ''
    ln -s $out/lib/libflame.so.${version} $out/lib/liblapack.so.3
    ln -s $out/lib/libflame.so.${version} $out/lib/liblapacke.so.3
  '';

  meta = with lib; {
    description = "LAPACK-compatible linear algebra library optimized for AMD CPUs";
    homepage = "https://developer.amd.com/amd-aocl/blas-library/";
    license = licenses.bsd3;
    maintainers = with maintainers; [ ];
    platforms = [ "x86_64-linux" ];
  };
}