Getting Started¶
Python quick start¶
To install µGrid’s Python bindings, run
$ pip install muGrid
Note that on most platforms this will install a binary wheel that was compiled with a minimal configuration. To compile for your specific platform use
$ pip install -v --force-reinstall --no-cache --no-binary muGrid muGrid
which will compile the code. µGrid will autodetect MPI. For I/O, it will try to use Unidata NetCDF for serial builds and PnetCDF for MPI-parallel builds. Monitor output to see which of these options were automatically detected. You should see something like:
Message: --------------------
Message: muGrid configuration
Message: MPI : *** YES ***
Message: Parallel NetCDF: *** YES ***
Message: --------------------
Obtaining µGrid’s source code¶
µGrid is hosted on a git repository on GitHub. To clone it, run
$ git clone https://github.com/muSpectre/muGrid.git
or if you prefer identifying yourself using a public ssh-key, run
$ git clone git@github.com:muSpectre/muGrid.git
The latter option requires you to have a user account on GitHub.
Building µGrid¶
µGrid uses Meson (0.42.0 or higher) as its build system.
The current (and possibly incomplete list of) dependencies are:
The following dependencies are included as Meson subprojects:
The following dependencies are optional:
Recommended:
µGrid requires a relatively modern compiler as it makes heavy use of C++17 features.
To compile for development, i.e. with debug options turned on, first setup the build folder:
$ meson setup meson-build-debug
To compile for production, i.e. with code optimizations turned on, setup the build folder while specifying the release build type.
$ meson setup --buildtype release meson-build-release
The compilation is typically handled with ninja. Navigate to the build folder and run:
$ meson compile
Getting help and reporting bugs¶
µGrid is under active development and the documentation may be spotty. If you run into trouble, please contact us by opening an issue and someone will answer as soon as possible. You can also check the API reference.
Contribute¶
We welcome contributions both for new features and bug fixes. New features must be documented and have unit tests. Please submit merge requests for review.