mirror of
https://github.com/amd/blis.git
synced 2026-04-20 07:38:53 +00:00
Fixed typos in docs/Multithreading.md.
This commit is contained in:
@@ -31,13 +31,13 @@ To enable multithreading via OpenMP, you must provide the `--enable-threading` o
|
||||
```
|
||||
$ ./configure --enable-threading=openmp auto
|
||||
```
|
||||
In this example, we target the `auto` configuration, which is like asking `configure` to choose the more appropriate configuration based on some detection heuristic (e.g. `cpuid` on x86_64). Similarly, to enable multithreading via POSIX threads (pthreads), specify the threading model as `pthreads` instead of `openmp`:
|
||||
In this example, we target the `auto` configuration, which is like asking `configure` to choose the most appropriate configuration based on some detection heuristic (e.g. `cpuid` on x86_64). Similarly, to enable multithreading via POSIX threads (pthreads), specify the threading model as `pthreads` instead of `openmp`:
|
||||
```
|
||||
$ ./configure --enable-threading=pthreads auto
|
||||
```
|
||||
You can also use the shorthand option for `--enable-threading`, which is `-t`:
|
||||
```
|
||||
$ ./configure -t pthreads
|
||||
$ ./configure -t pthreads auto
|
||||
```
|
||||
For more complete and up-to-date information on the `--enable-threading` option, simply run `configure` with the `--help` (or `-h`) option:
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user