diff options
author | Edoardo Pasca <edo.paskino@gmail.com> | 2018-11-14 14:35:10 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-14 14:35:10 +0000 |
commit | c7e7c67c4b4c3a3da170f23706e951b4b34275cc (patch) | |
tree | ce8f579319c2f8466879fabf6121418434ddade4 | |
parent | 5f2dd82dd21131ab6086f0e7e8677ade6c9bb586 (diff) | |
parent | c7e391251f05fa25c9e82114bfb27f8d3b884534 (diff) | |
download | regularization-c7e7c67c4b4c3a3da170f23706e951b4b34275cc.tar.gz regularization-c7e7c67c4b4c3a3da170f23706e951b4b34275cc.tar.bz2 regularization-c7e7c67c4b4c3a3da170f23706e951b4b34275cc.tar.xz regularization-c7e7c67c4b4c3a3da170f23706e951b4b34275cc.zip |
Merge pull request #66 from TomasKulhanek/patch-1
Update Readme.md
-rw-r--r-- | Readme.md | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -39,24 +39,24 @@ ## Installation: -The package comes as a [CMake](https://cmake.org) project so you will need CMake to configure it. Additionally you will need a C compiler, `make` (on linux) and CUDA SDK where available. The toolkit may be used directly from C/C++ as it is compiled as a shared library (check-out the include files in `Core` for this). We provide wrappers for Python and Matlab. +The package comes as a [CMake](https://cmake.org) project so you will need CMake (v.>=3) to configure it. Additionally you will need a C compiler, `make` (on linux) and CUDA SDK where available. The toolkit may be used directly from C/C++ as it is compiled as a shared library (check-out the include files in `Core` for this). We provide wrappers for Python and Matlab. 1. Clone this repository to a directory, i.e. `CCPi-Regularisation-Toolkit`, 2. create a build directory. -3. Issue `cmake` to configure (or `cmake-gui`, or `ccmake`). Use additional flags to fine tune the configuration. +3. Issue `cmake` to configure (or `cmake-gui`, or `ccmake`, or `cmake3`). Use additional flags to fine tune the configuration. ### CMake flags Flags used during configuration | CMake flag | type | meaning | |:---|:----|:----| -| `BUILD_PYTHON_WRAPPER` | bool | obvious | -| `BUILD_MATLAB_WRAPPER` | bool | obvious | +| `BUILD_PYTHON_WRAPPER` | bool | `ON\|OFF` whether to build the Python wrapper | +| `BUILD_MATLAB_WRAPPER` | bool | `ON\|OFF` whether to build the Matlab wrapper | | `CMAKE_INSTALL_PREFIX` | path | your favourite install directory | | `PYTHON_DEST_DIR` | path | python modules install directory (default `${CMAKE_INSTALL_PREFIX}/python`) | | `MATLAB_DEST_DIR` | path | Matlab modules install directory (default `${CMAKE_INSTALL_PREFIX}/matlab`)| -| `BUILD_CUDA` | bool | whether to build the CUDA regularisers | -| `CONDA_BUILD`| bool | whether it is installed with `setup.py install`| +| `BUILD_CUDA` | bool | `ON\|OFF` whether to build the CUDA regularisers | +| `CONDA_BUILD`| bool | `ON\|OFF` whether it is installed with `setup.py install`| | `Matlab_ROOT_DIR` | path | Matlab directory| |`PYTHON_EXECUTABLE` | path | /path/to/python/executable| |