|
5 | 5 | Travis CI: [](https://travis-ci.org/xianyi/OpenBLAS)
|
6 | 6 |
|
7 | 7 | AppVeyor: [](https://ci.appveyor.com/project/xianyi/openblas/branch/develop)
|
| 8 | + |
8 | 9 | ## Introduction
|
| 10 | + |
9 | 11 | OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version.
|
10 | 12 |
|
11 |
| -Please read the documents on OpenBLAS wiki pages <http://github.com/xianyi/OpenBLAS/wiki>. |
| 13 | +Please read the documentation on the OpenBLAS wiki pages: <http://github.com/xianyi/OpenBLAS/wiki>. |
12 | 14 |
|
13 | 15 | ## Binary Packages
|
14 |
| -We provide binary packages for the following platform. |
| 16 | + |
| 17 | +We provide official binary packages for the following platform: |
15 | 18 |
|
16 | 19 | * Windows x86/x86_64
|
17 | 20 |
|
18 | 21 | You can download them from [file hosting on sourceforge.net](https://sourceforge.net/projects/openblas/files/).
|
19 | 22 |
|
20 | 23 | ## Installation from Source
|
21 |
| -Download from project homepage. http://xianyi.github.com/OpenBLAS/ |
22 | 24 |
|
23 |
| -Or, check out codes from git://github.com/xianyi/OpenBLAS.git |
24 |
| -### Normal compile |
25 |
| - * type "make" to detect the CPU automatically. |
26 |
| - or |
27 |
| - * type "make TARGET=xxx" to set target CPU, e.g. "make TARGET=NEHALEM". The full target list is in file TargetList.txt. |
| 25 | +Download from project homepage, http://xianyi.github.com/OpenBLAS/, or check out the code |
| 26 | +using Git from https://github.com/xianyi/OpenBLAS.git. |
28 | 27 |
|
29 |
| -### Cross compile |
30 |
| -Please set CC and FC with the cross toolchains. Then, set HOSTCC with your host C compiler. At last, set TARGET explicitly. |
| 28 | +### Dependencies |
31 | 29 |
|
32 |
| -Examples: |
| 30 | +Building OpenBLAS requires the following to be installed: |
33 | 31 |
|
34 |
| -On X86 box, compile this library for loongson3a CPU. |
| 32 | +* GNU Make |
| 33 | +* A C compiler, e.g. GCC or Clang |
| 34 | +* A Fortran compiler (optional, for LAPACK) |
| 35 | +* IBM MASS (optional, see below) |
35 | 36 |
|
36 |
| - make BINARY=64 CC=mips64el-unknown-linux-gnu-gcc FC=mips64el-unknown-linux-gnu-gfortran HOSTCC=gcc TARGET=LOONGSON3A |
| 37 | +### Normal compile |
37 | 38 |
|
38 |
| -On X86 box, compile this library for loongson3a CPU with loongcc (based on Open64) compiler. |
| 39 | +Simply invoking `make` (or `gmake` on BSD) will detect the CPU automatically. |
| 40 | +To set a specific target CPU, use `make TARGET=xxx`, e.g. `make TARGET=NEHALEM`. |
| 41 | +The full target list is in the file `TargetList.txt`. |
39 | 42 |
|
40 |
| - make CC=loongcc FC=loongf95 HOSTCC=gcc TARGET=LOONGSON3A CROSS=1 CROSS_SUFFIX=mips64el-st-linux-gnu- NO_LAPACKE=1 NO_SHARED=1 BINARY=32 |
| 43 | +### Cross compile |
41 | 44 |
|
42 |
| -### Debug version |
| 45 | +Set `CC` and `FC` to point to the cross toolchains, and set `HOSTCC` to your host C compiler. |
| 46 | +The target must be specified explicitly when cross compiling. |
| 47 | + |
| 48 | +Examples: |
43 | 49 |
|
44 |
| - make DEBUG=1 |
| 50 | +* On an x86 box, compile this library for a loongson3a CPU: |
| 51 | + ```sh |
| 52 | + make BINARY=64 CC=mips64el-unknown-linux-gnu-gcc FC=mips64el-unknown-linux-gnu-gfortran HOSTCC=gcc TARGET=LOONGSON3A |
| 53 | + ``` |
45 | 54 |
|
46 |
| -### Compile with MASS Support on Power CPU (Optional dependency) |
| 55 | +* On an x86 box, compile this library for a loongson3a CPU with loongcc (based on Open64) compiler: |
| 56 | + ```sh |
| 57 | + make CC=loongcc FC=loongf95 HOSTCC=gcc TARGET=LOONGSON3A CROSS=1 CROSS_SUFFIX=mips64el-st-linux-gnu- NO_LAPACKE=1 NO_SHARED=1 BINARY=32 |
| 58 | + ``` |
47 | 59 |
|
48 |
| -[IBM MASS](http://www-01.ibm.com/software/awdtools/mass/linux/mass-linux.html) library consists of a set of mathematical functions for C, C++, and |
49 |
| -Fortran-language applications that are tuned for optimum performance on POWER architectures. OpenBLAS with MASS requires 64-bit, little-endian OS on POWER. |
50 |
| -The library can be installed as below - |
| 60 | +### Debug version |
51 | 61 |
|
52 |
| - * On Ubuntu: |
| 62 | +A debug version can be built using `make DEBUG=1`. |
53 | 63 |
|
54 |
| - wget -q http://public.dhe.ibm.com/software/server/POWER/Linux/xl-compiler/eval/ppc64le/ubuntu/public.gpg -O- | sudo apt-key add -</br> |
55 |
| - echo "deb http://public.dhe.ibm.com/software/server/POWER/Linux/xl-compiler/eval/ppc64le/ubuntu/ trusty main" | sudo tee /etc/apt/sources.list.d/ibm-xl-compiler-eval.list</br> |
56 |
| - sudo apt-get update</br> |
57 |
| - sudo apt-get install libxlmass-devel.8.1.5</br> |
| 64 | +### Compile with MASS support on Power CPU (optional) |
58 | 65 |
|
59 |
| - * On RHEL/CentOS: |
| 66 | +The [IBM MASS](http://www-01.ibm.com/software/awdtools/mass/linux/mass-linux.html) library |
| 67 | +consists of a set of mathematical functions for C, C++, and Fortran applications that are |
| 68 | +are tuned for optimum performance on POWER architectures. |
| 69 | +OpenBLAS with MASS requires a 64-bit, little-endian OS on POWER. |
| 70 | +The library can be installed as shown: |
60 | 71 |
|
61 |
| - wget http://public.dhe.ibm.com/software/server/POWER/Linux/xl-compiler/eval/ppc64le/rhel7/repodata/repomd.xml.key</br> |
62 |
| - sudo rpm --import repomd.xml.key</br> |
63 |
| - wget http://public.dhe.ibm.com/software/server/POWER/Linux/xl-compiler/eval/ppc64le/rhel7/ibm-xl-compiler-eval.repo</br> |
64 |
| - sudo cp ibm-xl-compiler-eval.repo /etc/yum.repos.d/</br> |
65 |
| - sudo yum install libxlmass-devel.8.1.5</br> |
| 72 | +* On Ubuntu: |
| 73 | + ```sh |
| 74 | + wget -q http://public.dhe.ibm.com/software/server/POWER/Linux/xl-compiler/eval/ppc64le/ubuntu/public.gpg -O- | sudo apt-key add - |
| 75 | + echo "deb http://public.dhe.ibm.com/software/server/POWER/Linux/xl-compiler/eval/ppc64le/ubuntu/ trusty main" | sudo tee /etc/apt/sources.list.d/ibm-xl-compiler-eval.list |
| 76 | + sudo apt-get update |
| 77 | + sudo apt-get install libxlmass-devel.8.1.5 |
| 78 | + ``` |
66 | 79 |
|
67 |
| -After installing MASS library, compile openblas with USE_MASS=1. |
| 80 | +* On RHEL/CentOS: |
| 81 | + ```sh |
| 82 | + wget http://public.dhe.ibm.com/software/server/POWER/Linux/xl-compiler/eval/ppc64le/rhel7/repodata/repomd.xml.key |
| 83 | + sudo rpm --import repomd.xml.key |
| 84 | + wget http://public.dhe.ibm.com/software/server/POWER/Linux/xl-compiler/eval/ppc64le/rhel7/ibm-xl-compiler-eval.repo |
| 85 | + sudo cp ibm-xl-compiler-eval.repo /etc/yum.repos.d/ |
| 86 | + sudo yum install libxlmass-devel.8.1.5 |
| 87 | + ``` |
68 | 88 |
|
69 |
| -Example: |
| 89 | +After installing the MASS library, compile OpenBLAS with `USE_MASS=1`. |
| 90 | +For example, to compile on Power8 with MASS support: `make USE_MASS=1 TARGET=POWER8`. |
70 | 91 |
|
71 |
| -Compiling on Power8 with MASS support - |
| 92 | +### Install to a specific directory (optional) |
72 | 93 |
|
73 |
| - make USE_MASS=1 TARGET=POWER8 |
| 94 | +Use `PREFIX=` when invoking `make`, for example |
74 | 95 |
|
75 |
| -### Install to the directory (optional) |
| 96 | +```sh |
| 97 | +make install PREFIX=your_installation_directory |
| 98 | +``` |
76 | 99 |
|
77 |
| -Example: |
| 100 | +The default installation directory is `/opt/OpenBLAS`. |
78 | 101 |
|
79 |
| - make install PREFIX=your_installation_directory |
| 102 | +## Supported CPUs and Operating Systems |
80 | 103 |
|
81 |
| -The default directory is /opt/OpenBLAS |
| 104 | +Please read `GotoBLAS_01Readme.txt`. |
82 | 105 |
|
83 |
| -## Support CPU & OS |
84 |
| -Please read GotoBLAS_01Readme.txt |
| 106 | +### Additional supported CPUs |
85 | 107 |
|
86 |
| -### Additional support CPU: |
| 108 | +#### x86/x86-64 |
87 | 109 |
|
88 |
| -#### x86/x86-64: |
89 | 110 | - **Intel Xeon 56xx (Westmere)**: Used GotoBLAS2 Nehalem codes.
|
90 | 111 | - **Intel Sandy Bridge**: Optimized Level-3 and Level-2 BLAS with AVX on x86-64.
|
91 | 112 | - **Intel Haswell**: Optimized Level-3 and Level-2 BLAS with AVX2 and FMA on x86-64.
|
92 | 113 | - **AMD Bobcat**: Used GotoBLAS2 Barcelona codes.
|
93 |
| -- **AMD Bulldozer**: x86-64 ?GEMM FMA4 kernels. (Thank Werner Saar) |
| 114 | +- **AMD Bulldozer**: x86-64 ?GEMM FMA4 kernels. (Thanks to Werner Saar) |
94 | 115 | - **AMD PILEDRIVER**: Uses Bulldozer codes with some optimizations.
|
95 | 116 | - **AMD STEAMROLLER**: Uses Bulldozer codes with some optimizations.
|
96 | 117 |
|
97 |
| -#### MIPS64: |
| 118 | +#### MIPS64 |
| 119 | + |
98 | 120 | - **ICT Loongson 3A**: Optimized Level-3 BLAS and the part of Level-1,2.
|
99 | 121 | - **ICT Loongson 3B**: Experimental
|
100 | 122 |
|
101 |
| -#### ARM: |
102 |
| -- **ARMV6**: Optimized BLAS for vfpv2 and vfpv3-d16 ( e.g. BCM2835, Cortex M0+ ) |
103 |
| -- **ARMV7**: Optimized BLAS for vfpv3-d32 ( e.g. Cortex A8, A9 and A15 ) |
| 123 | +#### ARM |
104 | 124 |
|
105 |
| -#### ARM64: |
106 |
| -- **ARMV8**: Experimental |
| 125 | +- **ARMv6**: Optimized BLAS for vfpv2 and vfpv3-d16 (e.g. BCM2835, Cortex M0+) |
| 126 | +- **ARMv7**: Optimized BLAS for vfpv3-d32 (e.g. Cortex A8, A9 and A15) |
| 127 | + |
| 128 | +#### ARM64 |
| 129 | + |
| 130 | +- **ARMv8**: Experimental |
107 | 131 | - **ARM Cortex-A57**: Experimental
|
108 | 132 |
|
109 | 133 | #### PPC/PPC64
|
110 |
| -- **POWER8**: Optmized Level-3 BLAS and some Level-1, only with USE_OPENMP=1 |
111 | 134 |
|
112 |
| -#### IBM zEnterprise System: |
113 |
| -- **Z13**: Optimized Level-3 BLAS and Level-1,2 (double precision) |
114 |
| - |
| 135 | +- **POWER8**: Optmized Level-3 BLAS and some Level-1, only with `USE_OPENMP=1` |
115 | 136 |
|
116 |
| -### Support OS: |
117 |
| -- **GNU/Linux** |
118 |
| -- **MingWin or Visual Studio(CMake)/Windows**: Please read <https://github.com/xianyi/OpenBLAS/wiki/How-to-use-OpenBLAS-in-Microsoft-Visual-Studio>. |
119 |
| -- **Darwin/Mac OS X**: Experimental. Although GotoBLAS2 supports Darwin, we are the beginner on Mac OS X. |
120 |
| -- **FreeBSD**: Supported by community. We didn't test the library on this OS. |
121 |
| -- **OpenBSD**: Supported by community. We didn't test the library on this OS. |
122 |
| -- **DragonFly BSD**: Supported by community. We didn't test the library on this OS. |
123 |
| -- **Android**: Supported by community. Please read <https://github.com/xianyi/OpenBLAS/wiki/How-to-build-OpenBLAS-for-Android>. |
| 137 | +#### IBM zEnterprise System |
124 | 138 |
|
125 |
| -## Usages |
126 |
| -Link with libopenblas.a or -lopenblas for shared library. |
| 139 | +- **Z13**: Optimized Level-3 BLAS and Level-1,2 (double precision) |
127 | 140 |
|
128 |
| -### Set the number of threads with environment variables. |
| 141 | +### Supported OS |
129 | 142 |
|
130 |
| -Examples: |
| 143 | +- **GNU/Linux** |
| 144 | +- **MinGW or Visual Studio (CMake)/Windows**: Please read <https://github.com/xianyi/OpenBLAS/wiki/How-to-use-OpenBLAS-in-Microsoft-Visual-Studio>. |
| 145 | +- **Darwin/macOS**: Experimental. Although GotoBLAS2 supports Darwin, we are not macOS experts. |
| 146 | +- **FreeBSD**: Supported by the community. We don't actively test the library on this OS. |
| 147 | +- **OpenBSD**: Supported by the community. We don't actively test the library on this OS. |
| 148 | +- **DragonFly BSD**: Supported by the community. We don't actively test the library on this OS. |
| 149 | +- **Android**: Supported by the community. Please read <https://github.com/xianyi/OpenBLAS/wiki/How-to-build-OpenBLAS-for-Android>. |
131 | 150 |
|
132 |
| - export OPENBLAS_NUM_THREADS=4 |
| 151 | +## Usage |
133 | 152 |
|
134 |
| - or |
| 153 | +Statically link with `libopenblas.a` or dynamically link with `-lopenblas` if OpenBLAS was |
| 154 | +compiled as a shared library. |
135 | 155 |
|
136 |
| - export GOTO_NUM_THREADS=4 |
| 156 | +### Setting the number of threads using environment variables |
137 | 157 |
|
138 |
| - or |
| 158 | +Environment variables are used to specify a maximum number of threads. |
| 159 | +For example, |
139 | 160 |
|
140 |
| - export OMP_NUM_THREADS=4 |
| 161 | +```sh |
| 162 | +export OPENBLAS_NUM_THREADS=4 |
| 163 | +export GOTO_NUM_THREADS=4 |
| 164 | +export OMP_NUM_THREADS=4 |
| 165 | +``` |
141 | 166 |
|
142 |
| -The priorities are OPENBLAS_NUM_THREADS > GOTO_NUM_THREADS > OMP_NUM_THREADS. |
| 167 | +The priorities are `OPENBLAS_NUM_THREADS` > `GOTO_NUM_THREADS` > `OMP_NUM_THREADS`. |
143 | 168 |
|
144 |
| -If you compile this lib with USE_OPENMP=1, you should set OMP_NUM_THREADS environment variable. OpenBLAS ignores OPENBLAS_NUM_THREADS and GOTO_NUM_THREADS with USE_OPENMP=1. |
| 169 | +If you compile this library with `USE_OPENMP=1`, you should set the `OMP_NUM_THREADS` |
| 170 | +environment variable; OpenBLAS ignores `OPENBLAS_NUM_THREADS` and `GOTO_NUM_THREADS` when |
| 171 | +compiled with `USE_OPENMP=1`. |
145 | 172 |
|
146 |
| -### Set the number of threads on runtime. |
| 173 | +### Setting the number of threads at runtime |
147 | 174 |
|
148 |
| -We provided the below functions to control the number of threads on runtime. |
| 175 | +We provide the following functions to control the number of threads at runtime: |
149 | 176 |
|
150 |
| - void goto_set_num_threads(int num_threads); |
| 177 | +```c |
| 178 | +void goto_set_num_threads(int num_threads); |
| 179 | +void openblas_set_num_threads(int num_threads); |
| 180 | +``` |
151 | 181 |
|
152 |
| - void openblas_set_num_threads(int num_threads); |
| 182 | +If you compile this library with `USE_OPENMP=1`, you should use the above functions too. |
153 | 183 |
|
154 |
| -If you compile this lib with USE_OPENMP=1, you should use the above functions, too. |
| 184 | +## Reporting bugs |
155 | 185 |
|
156 |
| -## Report Bugs |
157 |
| -Please add a issue in https://github.com/xianyi/OpenBLAS/issues |
| 186 | +Please submit an issue in https://github.com/xianyi/OpenBLAS/issues. |
158 | 187 |
|
159 | 188 | ## Contact
|
| 189 | +
|
160 | 190 | * OpenBLAS users mailing list: https://groups.google.com/forum/#!forum/openblas-users
|
161 | 191 | * OpenBLAS developers mailing list: https://groups.google.com/forum/#!forum/openblas-dev
|
162 | 192 |
|
163 |
| -## ChangeLog |
164 |
| -Please see Changelog.txt to obtain the differences between GotoBLAS2 1.13 BSD version. |
| 193 | +## Change log |
| 194 | +
|
| 195 | +Please see Changelog.txt to view the differences between OpenBLAS and GotoBLAS2 1.13 BSD version. |
165 | 196 |
|
166 | 197 | ## Troubleshooting
|
167 |
| -* Please read [Faq](https://github.com/xianyi/OpenBLAS/wiki/Faq) at first. |
168 |
| -* Please use gcc version 4.6 and above to compile Sandy Bridge AVX kernels on Linux/MingW/BSD. |
169 |
| -* Please use Clang version 3.1 and above to compile the library on Sandy Bridge microarchitecture. The Clang 3.0 will generate the wrong AVX binary code. |
170 |
| -* The number of CPUs/Cores should less than or equal to 256. On Linux x86_64(amd64), there is experimental support for up to 1024 CPUs/Cores and 128 numa nodes if you build the library with BIGNUMA=1. |
171 |
| -* OpenBLAS does not set processor affinity by default. On Linux, you can enable processor affinity by commenting the line NO_AFFINITY=1 in Makefile.rule. But this may cause [the conflict with R parallel](https://stat.ethz.ch/pipermail/r-sig-hpc/2012-April/001348.html). |
172 |
| -* On Loongson 3A. make test would be failed because of pthread_create error. The error code is EAGAIN. However, it will be OK when you run the same testcase on shell. |
| 198 | +
|
| 199 | +* Please read the [FAQ](https://github.com/xianyi/OpenBLAS/wiki/Faq) first. |
| 200 | +* Please use GCC version 4.6 and above to compile Sandy Bridge AVX kernels on Linux/MinGW/BSD. |
| 201 | +* Please use Clang version 3.1 and above to compile the library on Sandy Bridge microarchitecture. |
| 202 | + Clang 3.0 will generate the wrong AVX binary code. |
| 203 | +* The number of CPUs/cores should less than or equal to 256. On Linux `x86_64` (`amd64`), |
| 204 | + there is experimental support for up to 1024 CPUs/cores and 128 numa nodes if you build |
| 205 | + the library with `BIGNUMA=1`. |
| 206 | +* OpenBLAS does not set processor affinity by default. |
| 207 | + On Linux, you can enable processor affinity by commenting out the line `NO_AFFINITY=1` in |
| 208 | + Makefile.rule. However, note that this may cause |
| 209 | + [a conflict with R parallel](https://stat.ethz.ch/pipermail/r-sig-hpc/2012-April/001348.html). |
| 210 | +* On Loongson 3A, `make test` may fail with a `pthread_create` error (`EAGAIN`). |
| 211 | + However, it will be okay when you run the same test case on the shell. |
173 | 212 |
|
174 | 213 | ## Contributing
|
175 |
| -1. [Check for open issues](https://github.com/xianyi/OpenBLAS/issues) or open a fresh issue to start a discussion around a feature idea or a bug. |
176 |
| -1. Fork the [OpenBLAS](https://github.com/xianyi/OpenBLAS) repository to start making your changes. |
177 |
| -1. Write a test which shows that the bug was fixed or that the feature works as expected. |
178 |
| -1. Send a pull request. Make sure to add yourself to `CONTRIBUTORS.md`. |
| 214 | +
|
| 215 | +1. [Check for open issues](https://github.com/xianyi/OpenBLAS/issues) or open a fresh issue |
| 216 | + to start a discussion around a feature idea or a bug. |
| 217 | +2. Fork the [OpenBLAS](https://github.com/xianyi/OpenBLAS) repository to start making your changes. |
| 218 | +3. Write a test which shows that the bug was fixed or that the feature works as expected. |
| 219 | +4. Send a pull request. Make sure to add yourself to `CONTRIBUTORS.md`. |
179 | 220 |
|
180 | 221 | ## Donation
|
| 222 | +
|
181 | 223 | Please read [this wiki page](https://github.com/xianyi/OpenBLAS/wiki/Donation).
|
0 commit comments