summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorVincent Rouvreau <vincent.rouvreau@inria.fr>2022-05-23 12:01:04 +0200
committerVincent Rouvreau <vincent.rouvreau@inria.fr>2022-05-23 12:01:04 +0200
commit953cbffc67c2f6e26f10ca3a4538ef56b933dcc3 (patch)
tree2fbcb4277c6d88b238127634712d3ad66ac6e5d0 /.github
parent7941d119872fbd6bc91dca744111b1320f268150 (diff)
doc review: comment on number of CPU for python module
Diffstat (limited to '.github')
-rw-r--r--.github/how_to_compile_gudhi_in_a_conda_env.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/how_to_compile_gudhi_in_a_conda_env.md b/.github/how_to_compile_gudhi_in_a_conda_env.md
index 3870381b..533d0fd2 100644
--- a/.github/how_to_compile_gudhi_in_a_conda_env.md
+++ b/.github/how_to_compile_gudhi_in_a_conda_env.md
@@ -44,7 +44,7 @@ cd build
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=$CONDA_PREFIX ..
cd src/python
# To build python module in parallel
-python setup.py build_ext -j 16 --inplace
+python setup.py build_ext -j 16 --inplace # 16 is the number of CPUthat are used to compile the python module. Can be any other value.
# to clean the build
# python setup.py clean --all
```
@@ -88,6 +88,6 @@ cd build
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=$CONDA_PREFIX ..
cd python
# To build python module in parallel
-python setup.py build_ext -j 16 --inplace
+python setup.py build_ext -j 16 --inplace # 16 is the number of CPUthat are used to compile the python module. Can be any other value.
firefox sphinx/index.html # [optional] To display the python documentation. Anything else than firefox can be used.
``` \ No newline at end of file