Skip to content
Snippets Groups Projects
Commit eaeff75d authored by Cristian Lalescu's avatar Cristian Lalescu
Browse files

cleans up batch script

if user doesn't request mask, then we issue a cleaner call to `srun`
parent e6b5c553
Branches
Tags
No related merge requests found
Pipeline #122439 passed
......@@ -786,7 +786,9 @@ class _code(_base):
if 'executable_launcher' in self.host_info.keys():
executable_launcher = self.host_info['executable_launcher']
else:
executable_launcher = 'srun ${SLURM_CPU_BIND_OPTION}'
executable_launcher = 'srun'
if host_info['use_TurTLE_core_distribution']:
executable_launcher += ' ${SLURM_CPU_BIND_OPTION}'
if host_info['use_vtune']:
if 'vtune_executable' not in host_info.keys():
host_info['vtune_executable'] = 'vtune'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment