Skip to content

Commit

Permalink
Merge pull request #58 from sfiligoi/blas-devel-250113
Browse files Browse the repository at this point in the history
Remove mkl-include dependency, use blas-devel instead
  • Loading branch information
sfiligoi authored Jan 13, 2025
2 parents 26f545f + 6413bdb commit 29b259b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
df -h .
if [[ "$(uname -s)" == "Linux" ]];
then
conda create -q --yes --strict-channel-priority -n unifrac -c conda-forge -c bioconda gxx_linux-64 gfortran_linux-64 hdf5 mkl-include lz4 zlib hdf5-static libcblas liblapacke make curl
conda create -q --yes --strict-channel-priority -n unifrac -c conda-forge -c bioconda gxx_linux-64 gfortran_linux-64 hdf5 lz4 zlib hdf5-static libcblas liblapacke blas-devel make curl
else
conda create -q --yes --strict-channel-priority -n unifrac -c conda-forge -c bioconda clangxx_osx-64 hdf5 mkl-include lz4 hdf5-static libcblas liblapacke make curl
conda create -q --yes --strict-channel-priority -n unifrac -c conda-forge -c bioconda clangxx_osx-64 hdf5 lz4 hdf5-static libcblas liblapacke blas-devel make curl
fi
conda clean --yes -t
df -h .
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ make install
`conda-forge` channel, for example (on Linux):

```
conda create --strict-channel-priority -n unifrac-binaries -c conda-forge -c bioconda gxx_linux-64 gfortran_linux-64 hdf5 mkl-include lz4 zlib hdf5-static libcblas liblapacke make curl
conda create --strict-channel-priority -n unifrac-binaries -c conda-forge -c bioconda gxx_linux-64 gfortran_linux-64 hdf5 lz4 zlib hdf5-static libcblas liblapacke blas-devel make curl
conda activate unifrac-binaries
```

Expand Down
5 changes: 2 additions & 3 deletions src/skbio_alt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@
#include <random>
#include <algorithm>

// Not using anything mkl specific, but this is what we get from Conda
#include <mkl_cblas.h>
#include <mkl_lapacke.h>
#include <cblas.h>
#include <lapacke.h>

static std::mt19937 myRandomGenerator;

Expand Down

0 comments on commit 29b259b

Please sign in to comment.