Method: CodeRunner::Stampede#run_command
- Defined in:
- lib/coderunner/system_modules/stampede.rb
#run_command ⇒ Object
12 13 14 15 16 17 18 19 |
# File 'lib/coderunner/system_modules/stampede.rb', line 12 def run_command # "qsub #{batch_script_file}" if use_launcher return %[#{code_run_environment}\n ibrun -n #{@nprocs} -o 0 #{executable_location}/#{executable_name} #{parameter_string} > #{output_file} 2> #{error_file}] else "ibrun #{executable_location}/#{executable_name} #{parameter_string}" end end |