rsnt_translations
56,430
edits
No edit summary |
No edit summary |
||
Line 87: | Line 87: | ||
=== Exemple avec Python === | === Exemple avec Python === | ||
Le script Slurm suivant solutionne un [https://www.gurobi.com/documentation/9.5/examples/a_list_of_the_grb_examples.html modèle simple de l'emplacement de divers sites] avec [https://www.gurobi.com/documentation/9.5/examples/facility_py.html Gurobi Python]. L'exemple montre comment définir le paramètre [https://www.gurobi.com/documentation/9.5/refman/parameters.html#sec:Parameters Threads] avec un fichier [https://www.gurobi.com/documentation/9.5/quickstart_linux/using_a_grb_env_file.html gurobi.env] créé dynamiquement quand vous utilisez l'[https://www.gurobi.com/documentation/9.5/refman/python_parameter_examples.html l'interface Gurobi Python]. | |||
{{File | |||
|name=script-py_facility.sh | |||
|lang="sh" | |||
|contents= | |||
#!/bin/bash | |||
#SBATCH --account=def-group # some account | |||
#SBATCH --time=0-00:30 # specify time limit (D-HH:MM) | |||
#SBATCH --cpus-per-task=4 # specify number threads | |||
#SBATCH --mem=4G # specify total memory | |||
#SBATCH --nodes=1 # do not change | |||
#module load StdEnv/2016 # for versions < 9.0.3 | #module load StdEnv/2016 # for versions < 9.0.3 |