38,789
edits
No edit summary |
(Updating to match new version of source page) |
||
Line 56: | Line 56: | ||
=== Format LP === | === Format LP === | ||
<div class="mw-translate-fuzzy"> | |||
Le script suivant est un exemple pour un modèle au [https://www.gurobi.com/documentation/8.1/refman/lp_format.html format LP]. | Le script suivant est un exemple pour un modèle au [https://www.gurobi.com/documentation/8.1/refman/lp_format.html format LP]. | ||
{{File | {{File | ||
Line 66: | Line 67: | ||
module purge | module purge | ||
module load gurobi | module load gurobi | ||
</div> | |||
# use a version >= 9.0.3 | |||
module load StdEnv/2020 | |||
module load gurobi/9.1.0 | |||
# Créez le fichier d'environnement dans le répertoire courant en indiquant le nombre de fils. | # Créez le fichier d'environnement dans le répertoire courant en indiquant le nombre de fils. | ||
Line 75: | Line 81: | ||
=== Gurobi-Python === | === Gurobi-Python === | ||
<div class="mw-translate-fuzzy"> | |||
Le script suivant est un exemple de modèle qui utilise [https://www.gurobi.com/documentation/8.1/refman/py_python_api_overview.html#sec:Python Gurobi-Python]. | Le script suivant est un exemple de modèle qui utilise [https://www.gurobi.com/documentation/8.1/refman/py_python_api_overview.html#sec:Python Gurobi-Python]. | ||
{{File | {{File | ||
Line 86: | Line 93: | ||
module purge | module purge | ||
module load gurobi | module load gurobi | ||
</div> | |||
# use a version <= 9.0.2 | |||
module load StdEnv/2016.4 # or StdEnv/2018.3 | |||
module load gurobi/9.0.2 | |||
# Créez le fichier d'environnement dans le répertoire courant en indiquant le nombre de fils. | # Créez le fichier d'environnement dans le répertoire courant en indiquant le nombre de fils. | ||
Line 190: | Line 202: | ||
Voici un exemple de script pour une tâche : | Voici un exemple de script pour une tâche : | ||
{{File | {{File | ||
|name=gurobi-py_example.sh | |name=gurobi-py_example.sh | ||
Line 199: | Line 210: | ||
#SBATCH --cpus-per-task=1 # number of CPUs (threads) to use | #SBATCH --cpus-per-task=1 # number of CPUs (threads) to use | ||
#SBATCH --mem-per-cpu=1000M # memory per CPU (in MB) | #SBATCH --mem-per-cpu=1000M # memory per CPU (in MB) | ||
module | |||
module load StdEnv/2016.4 | |||
module load gurobi/9.0.1 | module load gurobi/9.0.1 | ||
source ~/env_gurobi/bin/activate | source ~/env_gurobi/bin/activate | ||