From 6bbb5045271b1756d100d7548665690019c78a3f Mon Sep 17 00:00:00 2001 From: jgyllinsky Date: Mon, 12 Sep 2016 17:52:43 -0400 Subject: [PATCH 1/3] added apt command to install OpenBLAS I'm not sure about MKL, but this should at least install OpenBLAS using APT on Ubuntu 16.04. Also note that `sudo apt install` may be sufficient on many devices, but for older versions the apt-get used here is likely better. --- docs/install_apt.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/install_apt.md b/docs/install_apt.md index 3de5a494e0c..ebce7f3d247 100644 --- a/docs/install_apt.md +++ b/docs/install_apt.md @@ -14,7 +14,7 @@ The NVIDIA package tends to follow more recent library and driver versions, but If installing from packages, install the library and latest driver separately; the driver bundled with the library is usually out-of-date. This can be skipped for CPU-only installation. -**BLAS**: install ATLAS by `sudo apt-get install libatlas-base-dev` or install OpenBLAS or MKL for better CPU performance. +**BLAS**: install ATLAS by `sudo apt-get install libatlas-base-dev` or install OpenBLAS (with `sudo apt-get install libopenblas-base libopenblas-dev`) or MKL for better CPU performance. **Python** (optional): if you use the default Python you will need to `sudo apt-get install` the `python-dev` package to have the Python headers for building the pycaffe interface. From 194b024ed6936d7e1a13dde9af16766eb3aa1694 Mon Sep 17 00:00:00 2001 From: jgyllinsky Date: Mon, 12 Sep 2016 19:28:35 -0400 Subject: [PATCH 2/3] removed redundant `libopenblas-base` removed redundant `libopenblas-base` as @lukeyeager suggested. since: $ apt-cache depends libopenblas-dev libopenblas-dev Depends: libopenblas-base Depends: libblas-dev --- docs/install_apt.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/install_apt.md b/docs/install_apt.md index ebce7f3d247..6ccf7451368 100644 --- a/docs/install_apt.md +++ b/docs/install_apt.md @@ -14,7 +14,7 @@ The NVIDIA package tends to follow more recent library and driver versions, but If installing from packages, install the library and latest driver separately; the driver bundled with the library is usually out-of-date. This can be skipped for CPU-only installation. -**BLAS**: install ATLAS by `sudo apt-get install libatlas-base-dev` or install OpenBLAS (with `sudo apt-get install libopenblas-base libopenblas-dev`) or MKL for better CPU performance. +**BLAS**: install ATLAS by `sudo apt-get install libatlas-base-dev` or install OpenBLAS (with `sudo apt-get install libopenblas-dev`) or MKL for better CPU performance. **Python** (optional): if you use the default Python you will need to `sudo apt-get install` the `python-dev` package to have the Python headers for building the pycaffe interface. From 6f7cb6cb4386b1fe9a4ead7be381561e6fc72f7f Mon Sep 17 00:00:00 2001 From: jgyllinsky Date: Mon, 12 Sep 2016 19:30:20 -0400 Subject: [PATCH 3/3] Fixed wording --- docs/install_apt.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/install_apt.md b/docs/install_apt.md index 6ccf7451368..c0c47602606 100644 --- a/docs/install_apt.md +++ b/docs/install_apt.md @@ -14,7 +14,7 @@ The NVIDIA package tends to follow more recent library and driver versions, but If installing from packages, install the library and latest driver separately; the driver bundled with the library is usually out-of-date. This can be skipped for CPU-only installation. -**BLAS**: install ATLAS by `sudo apt-get install libatlas-base-dev` or install OpenBLAS (with `sudo apt-get install libopenblas-dev`) or MKL for better CPU performance. +**BLAS**: install ATLAS by `sudo apt-get install libatlas-base-dev` or install OpenBLAS by `sudo apt-get install libopenblas-dev` or MKL for better CPU performance. **Python** (optional): if you use the default Python you will need to `sudo apt-get install` the `python-dev` package to have the Python headers for building the pycaffe interface.