Methan is a C++ library aimed at creating computational graph and optimising such graph throughout parallelisation power.
| Operating System | Status |
|---|---|
| MacOS | |
| Ubuntu | |
| Windows |
The installation of the most basic configuration of Methan is really straitforward only using git and cmake.
First we need to download the repository through the command interface. Methan also depends on submodules that need to be download along.
git clone https://github.com/BoyeGuillaume/methan.git
cd methan
git submodule update --init --recursiveSecondly we can use cmake to build and install to <path_to_install> Methan
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=<path_to_install> -DMETHAN_BUILD_SHARED=ON
cmake --build . --target installThe library has been made possible thanks to
- BoyeGuillaume