about summary refs log tree commit diff
path: root/pkgs/development/libraries/science/math/scalapack
AgeCommit message (Collapse)AuthorFilesLines
2021-01-03treewide: remove enableParallelBuilding = true if using cmakeBen Siraphob1-2/+0
2020-04-20blas,lapack: use isILP64 instead of is64bitMatthew Bauer1-1/+1
This is a better name since we have multiple 64-bit things that could be referred to. LP64 : integer=32, long=64, pointer=64 ILP64 : integer=64, long=64, pointer=64
2020-04-17treewide: use blas and lapackMatthew Bauer1-4/+5
This makes packages use lapack and blas, which can wrap different BLAS/LAPACK implementations. treewide: cleanup from blas/lapack changes A few issues in the original treewide: - can’t assume blas64 is a bool - unused commented code
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly1-1/+1
2020-02-17scalapack: 2.1 -> 2.1.0Dylan Simon1-2/+2
2.1 seems to have disappeared
2020-01-15treewide: Fix unsafe concatenation of $LD_LIBRARY_PATHAnders Kaseorg1-1/+1
Naive concatenation of $LD_LIBRARY_PATH can result in an empty colon-delimited segment; this tells glibc to load libraries from the current directory, which is definitely wrong, and may be a security vulnerability if the current directory is untrusted. (See #67234, for example.) Fix this throughout the tree. Signed-off-by: Anders Kaseorg <andersk@mit.edu>
2019-11-20scalapack: 2.0.2 -> 2.1Markus Kowalewski2-151/+7
2019-08-15treewide: name -> pname (easy cases) (#66585)volth1-1/+1
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
2019-05-27scalapack: Increase individual test timeout to prevent hydra failuresSilvan Mosberger1-0/+4
2019-02-21scalapack: update meta dataMarkus Kowalewski1-2/+2
* Set platform from linux -> x86_64-linux Scalapack does not seem to run properly on ARM (failing tests) * Add markuskowa as maintainer
2019-02-21scalapack: add openmpi4 compatibility patchMarkus Kowalewski2-0/+146
2018-11-20Merge pull request #50527 from matthewbauer/ninja-check-phaseMatthew Bauer1-4/+1
Add check phase to ninja setup hook
2018-11-19cmake: set CTEST_OUTPUT_ON_FAILURE globallyMatthew Bauer1-4/+1
We should always use this.
2018-11-11Merge branch 'master' into atlas-removemarkuskowa1-10/+32
2018-11-11scalapack: set platform to linuxMarkus Kowalewski1-1/+1
2018-10-27scalapack: switch to openblas + add testMarkus Kowalewski1-10/+32
* change from blas,lapack to openblas * add check phase * enable parallel building * fix license
2018-09-13scalapack: init at 2.0.2 (#46610)Christopher Ostrouchov1-0/+29
Added scalapack with flexibility to choose blas, lapack, and mpi implementation.