README.md 1.47 KB
Newer Older
Iker Martín Álvarez's avatar
Iker Martín Álvarez committed
1
# Proteo - DMR_Adaptation branch
Iker Martín's avatar
Iker Martín committed
2

Iker Martín Álvarez's avatar
Iker Martín Álvarez committed
3
## Overview
Iker Martín Álvarez's avatar
Iker Martín Álvarez committed
4
This branch contains an adaptation of the MaM library so it can be used by [DMR](https://gitlab.bsc.es/siserte/dmr/-/tree/main?ref_type=heads) 
Iker Martín Álvarez's avatar
Iker Martín Álvarez committed
5
6
7
8
9
10

## Branch Structure
This branch is divided into the following 4 directories:
- **Analysis**: Contains the scripts and notebook to perform analysis of Proteo executions.
- **Codes**: Contains all the codes used to compile Proteo.
- **Exec**: Contains the scripts to execute Proteo in different ways and check if the runs have completed successfully.
Iker Martín Álvarez's avatar
Iker Martín Álvarez committed
11
12
13
- **Results**: Default directory to perform executions.

Yet, this version of Proteo is not usable by itself, and is to simplify the merging to use it with DMR.
Iker Martín Álvarez's avatar
Iker Martín Álvarez committed
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28

## Installation

### Prerequisites
Before installing, ensure you have the following prerequisites:
- MPI (MPICH) installed on your system. This code has been tested with MPICH versions 3.4.1 and 4.0.3 with the OFI netmod.
- Slurm is installed on your system. This code has been tested with slurm-wlm 19.05.5.


### Steps
1. Clone the repository to your local machine:

    ```bash
    $ git clone http://lorca.act.uji.es/gitlab/martini/malleability_benchmark.git
    $ cd malleability_benchmark
Iker Martín Álvarez's avatar
Iker Martín Álvarez committed
29
    $ git checkout DMR_Adaptation
Iker Martín Álvarez's avatar
Iker Martín Álvarez committed
30
31
32
33
34
35
    ```

2. Compile the code using the `make` command:

    ```bash
    $ cd Codes/
Iker Martín Álvarez's avatar
Iker Martín Álvarez committed
36
    $ make
Iker Martín Álvarez's avatar
Iker Martín Álvarez committed
37
38
39
40
41
42
43
44
45
46
    ```

    This command compiles the code using the MPI (MPICH) library.

### Clean Up
To clean the installation and remove compiled binaries, use:

```bash
$ make clean
```