batchNodeList              package:nws              R Documentation

_N_o_d_e_L_i_s_t _F_u_n_c_t_i_o_n_s

_D_e_s_c_r_i_p_t_i_o_n:

     Return the list of nodes that SGE, LSF, or PBS has allocated for
     our process.

_U_s_a_g_e:

     batchNodeList()
     sgeNodeList()
     lsfNodeList()
     pbsNodeList()

_D_e_t_a_i_l_s:

     These functions should only be called from an R program that has
     been submitted as a parallel batch job by SGE, LSF, or PBS/Torque.
     The batchNodeList function calls either sgeNodeList, lsfNodeList,
     or pbsNodeList depending on what environment variables are
     defined. The resulting list should be passed to the sleigh
     function via the nodeList argument.

_V_a_l_u_e:

     A character vector to pass to sleigh via the nodeList argument.

_S_e_e _A_l_s_o:

     'sleigh'

_E_x_a_m_p_l_e_s:

     Sys.setenv(LSB_HOSTS="node1 node2 node3")
     batchNodeList()

