Module: CodeRunner::Helios

Includes:
Slurm
Defined in:
lib/coderunner/system_modules/helios.rb

Instance Method Summary collapse

Methods included from Slurm

#batch_script, #batch_script_file, #cancel_job, #error_file, #execute, #get_run_status, #output_file, #queue_status

Methods included from Launcher

#cancel_job_launcher, #error_file_launcher, #execute_launcher, #launcher_prefix, #output_file_launcher, #queue_status_launcher, #use_launcher

Instance Method Details

#max_ppnObject



5
6
7
# File 'lib/coderunner/system_modules/helios.rb', line 5

def max_ppn
	16
end

#mpi_progObject



8
9
10
11
12
# File 'lib/coderunner/system_modules/helios.rb', line 8

def mpi_prog
 nodes, ppn = @nprocs.split(/x/)
  nprocstot = nodes.to_i * ppn.to_i
  "srun -n #{nprocstot}"
end

#run_commandObject



13
14
15
16
17
18
19
# File 'lib/coderunner/system_modules/helios.rb', line 13

def run_command
	if use_launcher
		return %[#{code_run_environment}\n #@preamble #{mpi_prog}  #{executable_location}/#{executable_name} #{parameter_string} > #{output_file} 2> #{error_file}]
	else
		"#@preamble #{mpi_prog}  #{executable_location}/#{executable_name} #{parameter_string}"
	end
end