From 7293d62e2a87564d3d3e553ac38424ca902a4dad Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Franck=20P=C3=A9rignon?=
 <franck.perignon@univ-grenoble-alpes.fr>
Date: Thu, 14 Nov 2024 10:57:17 +0100
Subject: [PATCH] =?UTF-8?q?[skip=20CI]=C2=A0Update=20readme?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 README.md | 220 +++++++++++++++++++++++++++++++++++-------------------
 1 file changed, 142 insertions(+), 78 deletions(-)

diff --git a/README.md b/README.md
index 9faa2a5af..c4e41005f 100644
--- a/README.md
+++ b/README.md
@@ -31,64 +31,100 @@ HySoP is written in Python (main user interface and high level functionnalities)
 
 See [HySoP documentation](https://particle_methods.gricad-pages.univ-grenoble-alpes.fr/hysop-doc) for more information, screenshots and animations.
 
-Try online at mybinder
-======================
 
-Click [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/git/https%3A%2F%2Fgricad-gitlab.univ-grenoble-alpes.fr%2Fparticle_methods%2Fhysop_binder.git/HEAD) to open a jupyter notebook with a Hysop installed and
+[[_TOC_]]
+
+# Try online at mybinder
+
+Click [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/git/https%3A%2F%2Fgricad-gitlab.univ-grenoble-alpes.fr%2Fparticle_methods%2Fhysop_binder.git/HEAD) to open a jupyter notebook with Hysop installed and 
 ready to use.
 
-Use a Docker Images (recommended):
-==================================
+There you will find two detailed examples (2D advection problem and a flow past a cylinder) that will help you to understand hte simulation pipeline and familiarize yourself with Hysop.
+
+# Documentation
+
+The documentation is available on [Hysop web page](https://particle_methods.gricad-pages.univ-grenoble-alpes.fr/hysop-doc/) with a user manual and the [complete (auto-generated) API](https://particle_methods.gricad-pages.univ-grenoble-alpes.fr/hysop-doc/reference/index.html).
+
+The documentation generation is handled in a separate Gitlab project [hysop-doc](https://gricad-gitlab.univ-grenoble-alpes.fr/particle_methods/hysop-doc).
+
 
-Docker Images (CPU and GPU) are provided with HySoP and dependencies installed.
+# Quick start: use a Docker image (recommended)
+
+Docker Images (CPU and GPU) are provided with a complete installation of HySoP and its dependencies.
 
 *Docker Desktop must be installed on your computer! To find out how to install Docker Desktop click [here](https://docs.docker.com/desktop/).*
 
-Quick start:
-------------
 
 HySoP "CPU_Intel" Docker Image can be retrieved and launched as a [Docker Container](https://www.docker.com/resources/what-container/).
 
-As a jupyter notebook with the following command:
+To start Hysop in a Jupyter notebook, run the following command in a terminal (or with you favorite Docker API)
 
 ```
 docker run -p 8888:8888  --rm -ti gricad-registry.univ-grenoble-alpes.fr/particle_methods/hysop/hysoplab-cpu-intel-master
 ```
 
-Or to start a terminal session:
+Or to start a terminal command-line session:
 
-```
+```shell
 docker run -it --rm --entrypoint="/bin/bash" gricad-registry.univ-grenoble-alpes.fr/particle_methods/hysop/hysoplab-cpu-intel-master:latest
 ```
 
-In both cases, you will end up with a fully-fonctionnal installation of Hysop software (in a [Docker Container](https://www.docker.com/resources/what-container/) ) and will be able to quickly test HySoP using [examples in the documentation](https://particle_methods.gricad-pages.univ-grenoble-alpes.fr/hysop-doc/getting_started/index.html).
+If the host has Nvidia GPUs, replace hysoplab-cpu-intel-master with hysoplab-gpu-nvidia-master and run Docker as:
+
+```shell
+docker run -p 8888:8888 --runtime=nvidia --gpus all -it --rm --entrypoint="/bin/bash" gricad-registry.univ-grenoble-alpes.fr/particle_methods/hysop/hysoplab-cpu-intel-master:latest
+```
+
+
+In all cases, you will end up with a fully-fonctionnal installation of Hysop software (in a [Docker Container](https://www.docker.com/resources/what-container/) ) and will be able to quickly test HySoP using [examples in the documentation](https://particle_methods.gricad-pages.univ-grenoble-alpes.fr/hysop-doc/getting_started/index.html).
 
 **Please note the following:**
 
-* *If the HySoP Docker Image is not present on your host machine, using the above command, it will be automatically downloaded from the HySoP gitlab container registry. This may take some time, depending on the speed of your Internet connection. HySoP Docker Image size is beetween 3 and 4 Gb.*
+* *If the HySoP Docker Image is not present on your host machine, it will be automatically downloaded from the HySoP gitlab container registry. This may take some time, depending on your Internet connection. HySoP Docker Image size is beetween 3 and 4 GB.*
 
-* *A [micomamba packaged manager](https://mamba.readthedocs.io/en/latest/user_guide/micromamba.html) is used as a virtual environment for HySoP.*
+*  [Micromamba packaged manager](https://mamba.readthedocs.io/en/latest/user_guide/micromamba.html) is used as a virtual environment for HySoP.*
 
-* *By default, the Docker container is completely isolated from the host machine's disk space! As a result, it's impossible to write or read data on your hard disk. To share a directory between your host and the docker container, update the docker command like this:
+* *By default, the Docker container is completely isolated from the host machine's disk space! As a result, to be allowed to write or read data on your hard disk you need to explicitely share a directory between your host and the docker container. To do so, use the '-v' Docker option and update the command like this:
 
     ```
-    docker run -v HOST_DIRECTORY:/home/hysop-user/shared -p 8888:8888  --rm -ti gricad-registry.univ-grenoble-alpes.fr/particle_methods/hysop/hysoplab-gpu-nvidia-master
+    docker run -v <HOST_DIRECTORY>:/home/hysop-user/shared -p 8888:8888  --rm -ti gricad-registry.univ-grenoble-alpes.fr/particle_methods/hysop/hysoplab-gpu-nvidia-master
     ```
-    HOST_DIRECTORY (use full path!) will be available in the container in directory 'shared'.
+	
+    Replace <HOST_DIRECTORY> (use full path!) with the path you want to shared between host and container. It will be available in the container in directory '/home/hysop-user/shared'.
 
-How to improve your HySoP experience:
-------------------------------------
 
-[Git clone](https://git-scm.com/docs/git-clone) HySoP and change directory to 'hysop':
-```
+# Install from sources
+
+Hysop sources are available in a Gitlab project (Apache v2 license)
+
+You can try to build and install it yourself either inside a Docker container or directly on your computer.
+
+The second option might be harder since you will need to handle the installation of all Hysop dependencies.
+
+## Build and install locally Inside a Docker container
+
+Steps:
+
+1. Download hysop sources on the host
+2. Start a Docker container sharing the Hysop sources
+3. Build and install Hysop inside the container
+
+
+Step 1: [Git clone](https://git-scm.com/docs/git-clone) HySoP and change directory to 'hysop':
+
+```shell
 git clone https://gricad-gitlab.univ-grenoble-alpes.fr/hysop.git
-cd hysop
 ```
 
-Then HySoP Docker Container can run with everything needed to use hysop, but hysop:
 
-```
-docker run -v $(pwd):/home/hysop-user/shared --rm -ti gricad-registry.univ-grenoble-alpes.fr/particle_methods/hysop/[imagename]
+Step 2:
+
+Docker images with all the required dependencies to build Hysop are available in Hysop Gitlab registries.
+
+To start a container with these images, just run:
+
+```shell
+docker run -v $(pwd)/hysop:/home/hysop-user/hysop-shared --rm -ti gricad-registry.univ-grenoble-alpes.fr/particle_methods/hysop/[imagename]
 ```
 
 Your local directory 'hysop' is then shared inside the Docker Container in `shared` directory.
@@ -96,70 +132,112 @@ Your local directory 'hysop' is then shared inside the Docker Container in `shar
 * `[imgname]` is either `ci_cpu_intel`,
 which corresponds to Ubuntu 22.04 running with python3.12 and an Intel CPU OpenCL platform, or `ci_gpu_nvidia`, with an Nvidia GPU OpenCL platform (it requires host system driver compatible with cuda 12.0).
 
-Next step is to install HySoP manually inside this container (see [installation instruction](#installation) below).
 
-From Sources:
-============
+Step 3:
 
-Prerequisites:
---------------
-[Micomamba packaged manager](https://mamba.readthedocs.io/en/latest/user_guide/micromamba.html) is used to manage HySoP environments.
+Once the container has started, you're connected has 'hysop-user' with all Hysop sources inside /home/hysop-user/hysop-shared (a directeory shared between the container and the host)
 
-Download lastest HySoP:
-```
+Next step consists in configuring, building and installing HySoP thanks to [Meson build system](https://mesonbuild.com/) inside the Docker container as described in [installation instruction](#installation) below.
+
+
+## Build and install on your computer
+
+Steps:
+
+1. Download Hysop sources on the host
+2. Setup your environnement and make all Hysop dependencies available
+3. Build and install Hysop inside the container
+
+Step 1: [Git clone](https://git-scm.com/docs/git-clone) HySoP and change directory to 'hysop':
+
+```shell
 git clone https://gricad-gitlab.univ-grenoble-alpes.fr/hysop.git
-cd hysop
 ```
 
-We recommend to create and activate a micromamba environment for HySoP:
-```
-micromamba create -n hysop -f ci/hysopenv.yaml
+Step2: 
+
+setup your environment and install all Hysop dependencies:
+
+
+Installing HySoP dependencies can be a lengthy process. That's why we prefer to use Docker Images to avoid this tedious installation phase. However, Docker utilities are rarely available on cluster computers, in which case all HySoP dependencies will have to be installed.
+
+The quickest way to discover all the HySoP dependencies and how to install them is to explore the `Dockerfile` available in hysop sources [hysop/ci/docker_images/ci_user/Dockerfile](./ci/docker_images/ci_user/Dockerfile)
+
+**NVIDIA driver**:
+Please note that to run HySoP on NVIDIA GPUs,
+a Nvidia driver corresponding to your graphics card must be installed and running on your host system. [Here](https://www.nvidia.com/en-us/drivers/)
+ you'll find the various NVIDIA drivers and how to install them.
+
+
+You may handle all dependencies by yourself, with your favorite package manager, with venv Python and so on but we recommend to use [Micromamba packaged manager](https://mamba.readthedocs.io/en/latest/user_guide/micromamba.html).
+To create and activate a micromamba environment please use the yaml provided in Hysop sources, just try:
+
+```shell
+micromamba create -n hysop -f hysop/ci/hysopenv.yaml
 micromamba activate hysop
 ```
+
 User must complete the main dependencies with an OpenCL platform. Currently, we support only two:
 
 * Intel CPU OpenCL platform
-```
+
+```shell
 micromamba install -n base -y  intel-opencl-rt
 ```
 * Nvidia OpenCL platform (note that the real path to `libnvidia-opencl.so` must be adapted).
-```
+
+```shell
 echo "/usr/lib/x86_64-linux-gnu/libnvidia-opencl.so.1" > $CONDA_PREFIX/etc/OpenCL/vendors/nvidia.icd
 ```
 
+Step 3:
+Next step consists in configuring, building and installing HySoP thanks to [Meson build system](https://mesonbuild.com/) inside the Docker container as described in [installation instruction](#installation) below.
+
 
-Installation:
--------------
+## Installation
+
+### Setup and build
+
+We consider that hysop sources are available in directory '/path-to/hysop'.
 
 Install HySoP using [pip](https://pypi.org/project/pip/):
-```
-pip install --no-build-isolation --no-deps .
-```
 
-Install HySoP manually step by step using [meson](https://mesonbuild.com/):
+```shell
+pip install --no-build-isolation --no-deps /path-to/hysop
 ```
-export BUILD_DIR=builddir
-meson setup      ${BUILD_DIR}
+
+Or install HySoP manually step by step using [meson](https://mesonbuild.com/):
+
+```shell
+export BUILD_DIR=builddir # Choose any directory for builddir DIFFERENT from hysop sources. This will be a temporary dir.
+meson setup  ${BUILD_DIR}  /path-to/hysop
 meson compile -C ${BUILD_DIR}
 meson install -C ${BUILD_DIR}
 ```
-Install HySoP using meson and force a directory of installation:
-In this case, meson option `--python.install-env prefix` is needed.
 
-```
+Then Hysop will be installed in the current active Python environment (micromamba, venv ...)
+
+
+To choose another directory of installation, try option `--python.install-env prefix`
+
+```shell
 export BUILD_DIR=builddir
-meson setup      ${BUILD_DIR} --python.install-env prefix --prefix=${BUILD_DIR}/install
+meson setup  --python.install-env prefix --prefix=${BUILD_DIR}/install  ${BUILD_DIR}  /path-to/hysop
 meson compile -C ${BUILD_DIR}
 meson install -C ${BUILD_DIR}
 ```
 
-Configuration options:
----------------------
-Installation configuration may be customized by user overriding default configuration in `meson_options.txt`:
-```
-meson configure ${BUILD_DIR} -DOPTION_NAME=VALUE
+### Configuration options
+
+
+Installation configuration may be customized by user overriding default configuration (for a complete list of these options, see [meson_options.txt file](./meson_options.txt) in Hysop sources):
+
+```shell
+meson setup -DOPTION_NAME=VALUE  ${BUILD_DIR}  /path-to/hysop
+
 ```
-‘OPTION_NAME’ being one of the options described below and ‘VALUE’ is either ‘ON’ or ‘OFF’.
+
+OPTION_NAME being one of the options described below and ‘VALUE’ is either ‘ON’ or ‘OFF’.
 
 Behavior options:
 
@@ -178,39 +256,25 @@ Components options :
 * WITH_TESTS: enable testing (i.e. prepare target “meson test”, default = OFF).
 * WITH_DOCUMENTATION: Build Documentation. (default=OFF)
 
-Testing:
--------
+### Tests
 
-First test that HySoP package have been properly installed (both python part and compiled library)
-```
+When the installation process is over, first test that HySoP package is available and works properly. Try:
+
+```shell
 python3 -c "import hysop; print(hysop); print(dir(hysop))"
 python3 -c "from hysop import f2hysop; print(f2hysop);print(dir(f2hysop))"
 ```
 
 Then launch units tests shipped with the code
 
-```
+```shell
 meson test    -C ${BUILD_DIR}
 ```
 
 Finally one can try to launch all the provided examples from top directory of HySoP sources:
 
-```
-EXAMPLE_DIR=./hysop_examples/examples ./ci/scripts/run_examples.sh
+```shell
+EXAMPLE_DIR=./hysop_examples/examples /path-to/hysop/ci/scripts/run_examples.sh
 ```
 
 
-Dependencies:
-------------
-Installing HySoP dependencies can be a lengthy process. That's why we prefer to use Docker Images to avoid this tedious installation phase. However, Docker utilities are rarely available on cluster computers, in which case all HySoP dependencies will have to be installed.
-
-The quickest and easiest way to discover all the HySoP dependencies and how to install them is to explore the `Dockerfile`:
-
-```
-./ci/docker_images/ci_user/Dockerfile
-```
-
-**NVIDIA driver**:
-Please note that to run HySoP on NVIDIA GPUs,
-a Nvidia driver corresponding to your graphics card must be installed and running on your host system. [Here](https://www.nvidia.com/en-us/drivers/)
- you'll find the various NVIDIA drivers and how to install them.
-- 
GitLab