You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,16 +19,18 @@ Although the last two algorithms are not specifically designed for the k-Min-Sum
19
19
20
20
## Installation
21
21
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!
22
+
We **highly recommend** to install OpenMP. Parts of the code are parallelized and will be much faster. However, on Windows and MacOS the code also works without OpenMP. Nonetheless, the code was written for Linux and will achieve the best performance there.
23
23
24
24
On Linux, you can use the following command:
25
25
```bash
26
26
sudo apt-get install libomp-dev
27
27
```
28
+
28
29
On MacOS, you can use the following command:
29
30
```bash
30
-
brew install clang-omp
31
+
brew install llvm libomp
31
32
```
33
+
However, it might be that MacOS does not find the installed library. In [`build_extension.py`](./build_extension.py), the paths are set manually. If it does not work for you, please clone the repository and run `poetry build`. You you see a message in red if your OpenMP is not found.
0 commit comments