Skip to content

Commit ae1acc8

Browse files
committed
Add info about openmp
1 parent ab32e23 commit ae1acc8

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,18 @@ Although the last two algorithms are not specifically designed for the k-Min-Sum
1919

2020
## Installation
2121

22+
We **highly recommend** to install OpenMP. Parts of the code are parallelized and will be much faster. However, the code should run even without it. If that is not the case, open an issue!
23+
24+
On Linux, you can use the following command:
25+
```bash
26+
sudo apt-get install libomp-dev
27+
```
28+
On MacOS, you can use the following command:
29+
```bash
30+
brew install clang-omp
31+
```
32+
33+
Then, you can install the package via pip:
2234
```bash
2335
pip install kmsr
2436
```

0 commit comments

Comments
 (0)