Skip to content

Commit 6b0a9d1

Browse files
authored
Merge pull request #1508 from ararslan/aa/wording
Minor changes to wording and formatting in the README
2 parents 84923de + 137ccd9 commit 6b0a9d1

File tree

1 file changed

+135
-93
lines changed

1 file changed

+135
-93
lines changed

README.md

Lines changed: 135 additions & 93 deletions
Original file line numberDiff line numberDiff line change
@@ -5,177 +5,219 @@
55
Travis CI: [![Build Status](https://travis-ci.org/xianyi/OpenBLAS.svg?branch=develop)](https://travis-ci.org/xianyi/OpenBLAS)
66

77
AppVeyor: [![Build status](https://ci.appveyor.com/api/projects/status/09sohd35n8nkkx64/branch/develop?svg=true)](https://ci.appveyor.com/project/xianyi/openblas/branch/develop)
8+
89
## Introduction
10+
911
OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version.
1012

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>.
1214

1315
## Binary Packages
14-
We provide binary packages for the following platform.
16+
17+
We provide official binary packages for the following platform:
1518

1619
* Windows x86/x86_64
1720

1821
You can download them from [file hosting on sourceforge.net](https://sourceforge.net/projects/openblas/files/).
1922

2023
## Installation from Source
21-
Download from project homepage. http://xianyi.github.com/OpenBLAS/
2224

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.
2827

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
3129

32-
Examples:
30+
Building OpenBLAS requires the following to be installed:
3331

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)
3536

36-
make BINARY=64 CC=mips64el-unknown-linux-gnu-gcc FC=mips64el-unknown-linux-gnu-gfortran HOSTCC=gcc TARGET=LOONGSON3A
37+
### Normal compile
3738

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`.
3942

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
4144

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:
4349

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+
```
4554

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+
```
4759

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
5161

52-
* On Ubuntu:
62+
A debug version can be built using `make DEBUG=1`.
5363

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)
5865

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:
6071

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+
```
6679

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+
```
6888

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`.
7091

71-
Compiling on Power8 with MASS support -
92+
### Install to a specific directory (optional)
7293

73-
make USE_MASS=1 TARGET=POWER8
94+
Use `PREFIX=` when invoking `make`, for example
7495

75-
### Install to the directory (optional)
96+
```sh
97+
make install PREFIX=your_installation_directory
98+
```
7699

77-
Example:
100+
The default installation directory is `/opt/OpenBLAS`.
78101

79-
make install PREFIX=your_installation_directory
102+
## Supported CPUs and Operating Systems
80103

81-
The default directory is /opt/OpenBLAS
104+
Please read `GotoBLAS_01Readme.txt`.
82105

83-
## Support CPU & OS
84-
Please read GotoBLAS_01Readme.txt
106+
### Additional supported CPUs
85107

86-
### Additional support CPU:
108+
#### x86/x86-64
87109

88-
#### x86/x86-64:
89110
- **Intel Xeon 56xx (Westmere)**: Used GotoBLAS2 Nehalem codes.
90111
- **Intel Sandy Bridge**: Optimized Level-3 and Level-2 BLAS with AVX on x86-64.
91112
- **Intel Haswell**: Optimized Level-3 and Level-2 BLAS with AVX2 and FMA on x86-64.
92113
- **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)
94115
- **AMD PILEDRIVER**: Uses Bulldozer codes with some optimizations.
95116
- **AMD STEAMROLLER**: Uses Bulldozer codes with some optimizations.
96117

97-
#### MIPS64:
118+
#### MIPS64
119+
98120
- **ICT Loongson 3A**: Optimized Level-3 BLAS and the part of Level-1,2.
99121
- **ICT Loongson 3B**: Experimental
100122

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
104124

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
107131
- **ARM Cortex-A57**: Experimental
108132

109133
#### PPC/PPC64
110-
- **POWER8**: Optmized Level-3 BLAS and some Level-1, only with USE_OPENMP=1
111134

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`
115136

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
124138

125-
## Usages
126-
Link with libopenblas.a or -lopenblas for shared library.
139+
- **Z13**: Optimized Level-3 BLAS and Level-1,2 (double precision)
127140

128-
### Set the number of threads with environment variables.
141+
### Supported OS
129142

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>.
131150

132-
export OPENBLAS_NUM_THREADS=4
151+
## Usage
133152

134-
or
153+
Statically link with `libopenblas.a` or dynamically link with `-lopenblas` if OpenBLAS was
154+
compiled as a shared library.
135155

136-
export GOTO_NUM_THREADS=4
156+
### Setting the number of threads using environment variables
137157

138-
or
158+
Environment variables are used to specify a maximum number of threads.
159+
For example,
139160

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+
```
141166

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`.
143168

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`.
145172

146-
### Set the number of threads on runtime.
173+
### Setting the number of threads at runtime
147174

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:
149176

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+
```
151181
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.
153183
154-
If you compile this lib with USE_OPENMP=1, you should use the above functions, too.
184+
## Reporting bugs
155185
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.
158187
159188
## Contact
189+
160190
* OpenBLAS users mailing list: https://groups.google.com/forum/#!forum/openblas-users
161191
* OpenBLAS developers mailing list: https://groups.google.com/forum/#!forum/openblas-dev
162192
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.
165196
166197
## 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.
173212
174213
## 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`.
179220
180221
## Donation
222+
181223
Please read [this wiki page](https://github.com/xianyi/OpenBLAS/wiki/Donation).

0 commit comments

Comments
 (0)