linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / science / math / openblas / default.nix
blobc66e4ba44ef9eef9295318edc1c646715473803c
1 { lib, stdenv, fetchFromGitHub, fetchpatch, perl, which
2 # Most packages depending on openblas expect integer width to match
3 # pointer width, but some expect to use 32-bit integers always
4 # (for compatibility with reference BLAS).
5 , blas64 ? null
6 # Multi-threaded applications must not call a threaded OpenBLAS
7 # (the only exception is when an application uses OpenMP as its
8 # *only* form of multi-threading). See
9 #     https://github.com/xianyi/OpenBLAS/wiki/Faq/4bded95e8dc8aadc70ce65267d1093ca7bdefc4c#multi-threaded
10 #     https://github.com/xianyi/OpenBLAS/issues/2543
11 # This flag builds a single-threaded OpenBLAS using the flags
12 # stated in thre.
13 , singleThreaded ? false
14 , buildPackages
15 # Select a specific optimization target (other than the default)
16 # See https://github.com/xianyi/OpenBLAS/blob/develop/TargetList.txt
17 , target ? null
18 , enableStatic ? stdenv.hostPlatform.isStatic
19 , enableShared ? !stdenv.hostPlatform.isStatic
22 with lib;
24 let blas64_ = blas64; in
26 let
27   setTarget = x: if target == null then x else target;
29   # To add support for a new platform, add an element to this set.
30   configs = {
31     armv6l-linux = {
32       BINARY = 32;
33       TARGET = setTarget "ARMV6";
34       DYNAMIC_ARCH = false;
35       USE_OPENMP = true;
36     };
38     armv7l-linux = {
39       BINARY = 32;
40       TARGET = setTarget "ARMV7";
41       DYNAMIC_ARCH = false;
42       USE_OPENMP = true;
43     };
45     aarch64-darwin = {
46       BINARY = 64;
47       TARGET = setTarget "VORTEX";
48       DYNAMIC_ARCH = true;
49       USE_OPENMP = false;
50       MACOSX_DEPLOYMENT_TARGET = "11.0";
51     };
53     aarch64-linux = {
54       BINARY = 64;
55       TARGET = setTarget "ARMV8";
56       DYNAMIC_ARCH = true;
57       USE_OPENMP = true;
58     };
60     i686-linux = {
61       BINARY = 32;
62       TARGET = setTarget "P2";
63       DYNAMIC_ARCH = true;
64       USE_OPENMP = true;
65     };
67     x86_64-darwin = {
68       BINARY = 64;
69       TARGET = setTarget "ATHLON";
70       DYNAMIC_ARCH = true;
71       USE_OPENMP = false;
72       MACOSX_DEPLOYMENT_TARGET = "10.7";
73     };
75     x86_64-linux = {
76       BINARY = 64;
77       TARGET = setTarget "ATHLON";
78       DYNAMIC_ARCH = true;
79       USE_OPENMP = !stdenv.hostPlatform.isMusl;
80     };
82     powerpc64le-linux = {
83       BINARY = 64;
84       TARGET = setTarget "POWER5";
85       DYNAMIC_ARCH = true;
86       USE_OPENMP = !stdenv.hostPlatform.isMusl;
87     };
88   };
91 let
92   config =
93     configs.${stdenv.hostPlatform.system}
94     or (throw "unsupported system: ${stdenv.hostPlatform.system}");
97 let
98   blas64 =
99     if blas64_ != null
100       then blas64_
101       else hasPrefix "x86_64" stdenv.hostPlatform.system;
102   # Convert flag values to format OpenBLAS's build expects.
103   # `toString` is almost what we need other than bools,
104   # which we need to map {true -> 1, false -> 0}
105   # (`toString` produces empty string `""` for false instead of `0`)
106   mkMakeFlagValue = val:
107     if !builtins.isBool val then toString val
108     else if val then "1" else "0";
109   mkMakeFlagsFromConfig = mapAttrsToList (var: val: "${var}=${mkMakeFlagValue val}");
111   shlibExt = stdenv.hostPlatform.extensions.sharedLibrary;
114 stdenv.mkDerivation rec {
115   pname = "openblas";
116   version = "0.3.13";
118   outputs = [ "out" "dev" ];
120   src = fetchFromGitHub {
121     owner = "xianyi";
122     repo = "OpenBLAS";
123     rev = "v${version}";
124     sha256 = "14jxh0v3jfbw4mfjx4mcz4dd51lyq7pqvh9k8dg94539ypzjr2lj";
125   };
127   # apply https://github.com/xianyi/OpenBLAS/pull/3060 to fix a crash on arm
128   # remove this when updating to 0.3.14 or newer
129   patches = [
130     (fetchpatch {
131       name = "label-get_cpu_ftr-as-volatile.patch";
132       url = "https://github.com/xianyi/OpenBLAS/commit/6fe0f1fab9d6a7f46d71d37ebb210fbf56924fbc.diff";
133       sha256 = "06gwh73k4sas1ap2fi3jvpifbjkys2vhmnbj4mzrsvj279ljsfdk";
134     })
135   ];
137   inherit blas64;
139   # Some hardening features are disabled due to sporadic failures in
140   # OpenBLAS-based programs. The problem may not be with OpenBLAS itself, but
141   # with how these flags interact with hardening measures used downstream.
142   # In either case, OpenBLAS must only be used by trusted code--it is
143   # inherently unsuitable for security-conscious applications--so there should
144   # be no objection to disabling these hardening measures.
145   hardeningDisable = [
146     # don't modify or move the stack
147     "stackprotector" "pic"
148     # don't alter index arithmetic
149     "strictoverflow"
150     # don't interfere with dynamic target detection
151     "relro" "bindnow"
152   ];
154   nativeBuildInputs = [
155     perl
156     which
157   ];
159   depsBuildBuild = [
160     buildPackages.gfortran
161     buildPackages.stdenv.cc
162   ];
164   makeFlags = mkMakeFlagsFromConfig (config // {
165     FC = "${stdenv.cc.targetPrefix}gfortran";
166     CC = "${stdenv.cc.targetPrefix}${if stdenv.cc.isClang then "clang" else "cc"}";
167     PREFIX = placeholder "out";
168     NUM_THREADS = 64;
169     INTERFACE64 = blas64;
170     NO_STATIC = !enableStatic;
171     NO_SHARED = !enableShared;
172     CROSS = stdenv.hostPlatform != stdenv.buildPlatform;
173     HOSTCC = "cc";
174     # Makefile.system only checks defined status
175     # This seems to be a bug in the openblas Makefile:
176     # on x86_64 it expects NO_BINARY_MODE=
177     # but on aarch64 it expects NO_BINARY_MODE=0
178     NO_BINARY_MODE = if stdenv.isx86_64
179         then toString (stdenv.hostPlatform != stdenv.buildPlatform)
180         else stdenv.hostPlatform != stdenv.buildPlatform;
181   } // (lib.optionalAttrs singleThreaded {
182     # As described on https://github.com/xianyi/OpenBLAS/wiki/Faq/4bded95e8dc8aadc70ce65267d1093ca7bdefc4c#multi-threaded
183     USE_THREAD = false;
184     USE_LOCKING = true; # available with openblas >= 0.3.7
185     USE_OPENMP = false; # openblas will refuse building with both USE_OPENMP=1 and USE_THREAD=0
186   }));
188   doCheck = true;
189   checkTarget = "tests";
191   postInstall = ''
192     # Write pkgconfig aliases. Upstream report:
193     # https://github.com/xianyi/OpenBLAS/issues/1740
194     for alias in blas cblas lapack; do
195       cat <<EOF > $out/lib/pkgconfig/$alias.pc
196 Name: $alias
197 Version: ${version}
198 Description: $alias provided by the OpenBLAS package.
199 Cflags: -I$out/include
200 Libs: -L$out/lib -lopenblas
202     done
204     # Setup symlinks for blas / lapack
205     ln -s $out/lib/libopenblas${shlibExt} $out/lib/libblas${shlibExt}
206     ln -s $out/lib/libopenblas${shlibExt} $out/lib/libcblas${shlibExt}
207     ln -s $out/lib/libopenblas${shlibExt} $out/lib/liblapack${shlibExt}
208     ln -s $out/lib/libopenblas${shlibExt} $out/lib/liblapacke${shlibExt}
209   '' + lib.optionalString stdenv.hostPlatform.isLinux ''
210     ln -s $out/lib/libopenblas${shlibExt} $out/lib/libblas${shlibExt}.3
211     ln -s $out/lib/libopenblas${shlibExt} $out/lib/libcblas${shlibExt}.3
212     ln -s $out/lib/libopenblas${shlibExt} $out/lib/liblapack${shlibExt}.3
213     ln -s $out/lib/libopenblas${shlibExt} $out/lib/liblapacke${shlibExt}.3
214   '';
216   meta = with lib; {
217     description = "Basic Linear Algebra Subprograms";
218     license = licenses.bsd3;
219     homepage = "https://github.com/xianyi/OpenBLAS";
220     platforms = platforms.unix;
221     maintainers = with maintainers; [ ttuegel ];
222   };