rsnt_translations
56,437
edits
(Updating to match new version of source page) |
No edit summary |
||
Line 70: | Line 70: | ||
=== Exemple de données === | === Exemple de données === | ||
Le script Slurm suivant utilise l' [https://www.gurobi.com/documentation/9.5/quickstart_linux/solving_the_model_using_th.html interface ligne de commande] pour résoudre un [https://www.gurobi.com/documentation/9.5/quickstart_linux/solving_a_simple_model_the.html modèle simple pour produire des pièces de monnaie] écrit en [https://www.gurobi.com/documentation/9.5/refman/lp_format.html format LP]. La dernière ligne montre comment des [https://www.gurobi.com/documentation/9.5/refman/parameters.html paramètres] peuvent être passés directement à l'outil ligne de commande <code>gurobi_cl</code> avec des arguments simples. Pour sélectionner les meilleurs [https://www.gurobi.com/documentation/9.5/refman/parameters.html paramètres] pour un problème particulier et pour choisir les valeurs optimales, voyez les sections <i>Performance and Parameters</i> et <i>Algorithms and Search</I> dans la page [https://support.gurobi.com/hc/en-us/categories/360000840331-Knowledge-Base Knowledge Base] et dans la [https://www.gurobi.com/documentation/ documentation Gurobi]. | |||
Le script suivant | |||
{{File | {{File | ||
|name= | |name=script-lp_coins.sh | ||
|lang="sh" | |lang="sh" | ||
|contents= | |contents= | ||
#!/bin/bash | #!/bin/bash | ||
#SBATCH --account=def-group # some account | #SBATCH --account=def-group # some account | ||
#SBATCH --time=0:30 | #SBATCH --time=0-00:30 # specify time limit (D-HH:MM) | ||
#SBATCH -- | #SBATCH --cpus-per-task=8 # specify number threads | ||
#SBATCH --mem=4G # specify total memory | |||
#SBATCH --nodes=1 # do not change | |||
Voici un exemple de script pour une tâche : | Voici un exemple de script pour une tâche : |