Class: ServerScripts::Computer::ABCI

Inherits:
Base
  • Object
show all
Defined in:
lib/server_scripts/computer/abci.rb

Constant Summary collapse

FULL_NODE =
"rt_F"

Instance Method Summary collapse

Methods inherited from Base

#env_setter, #initialize, #node_type

Constructor Details

This class inherits a constructor from ServerScripts::Computer::Base

Instance Method Details

#header(node_type: FULL_NODE) ⇒ Object



6
7
8
9
10
11
12
13
14
15
16
17
# File 'lib/server_scripts/computer/abci.rb', line 6

def header(node_type: FULL_NODE)
  h = %q{
#!/bin/bash

#$ -cwd
#$ -l %{node_type}=%{nodes}
#$ -l h_rt=%{walltime}
#$ -N %{job_name}
#$ -o %{out_file}
#$ -e %{err_file}
  }
end