diff options
author | Evan Shelhamer <shelhamer@imaginarynumber.net> | 2014-07-29 22:57:47 -0700 |
---|---|---|
committer | Evan Shelhamer <shelhamer@imaginarynumber.net> | 2014-07-29 22:57:47 -0700 |
commit | 62bbc41e0e2cf2f22f0d30ff795aa09c99d3c63e (patch) | |
tree | 01aa8fe9774a0dd7fd615943d9b892bf044b0494 | |
parent | 44962584b2f71937dbfd2dadaeeed211d4e49598 (diff) | |
download | caffeonacl-62bbc41e0e2cf2f22f0d30ff795aa09c99d3c63e.tar.gz caffeonacl-62bbc41e0e2cf2f22f0d30ff795aa09c99d3c63e.tar.bz2 caffeonacl-62bbc41e0e2cf2f22f0d30ff795aa09c99d3c63e.zip |
link OpenBLAS as blas
OpenBLAS is most easily configured by `update-alternatives` or other
symlink strategies.
See https://github.com/BVLC/caffe/issues/314#issuecomment-40703048
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -252,7 +252,7 @@ ifeq ($(BLAS), mkl) BLAS_LIB ?= $(MKL_DIR)/lib $(MKL_DIR)/lib/intel64 else ifeq ($(BLAS), open) # OpenBLAS - LIBRARIES += openblas + LIBRARIES += blas else # ATLAS ifeq ($(LINUX), 1) |