Skip to content
Snippets Groups Projects
Commit b8eb77af authored by Jeremy Nicklas's avatar Jeremy Nicklas
Browse files

add more examples

parent 7c0e2df3
No related branches found
No related tags found
No related merge requests found
# Job submission configuration file
#
# @note Used to override job script batch parameters
# @see http://www.rubydoc.info/gems/ood_core/OodCore/Job/Script
---
# PBS/Torque specific, override the node resource by specifying the ppn
#
# Configure the content of the job script for the batch job here
# @see http://www.rubydoc.info/gems/ood_core/OodCore/BatchConnect/Template
#
batch_connect:
# We use the basic web server template for generating the job script
#
# @note Do not change this unless you know what you are doing!
template: "basic"
# You can override the command used to query the hostname of the compute node
# here
#
# @note It is **highly** recommended this be set in the global cluster
# configuration file so that all apps can take advantage of it by default
#
#set_host: "host=$(hostname -A | awk '{print $2}')"
#
# Configure the job script submission parameters for the batch job here
# @see http://www.rubydoc.info/gems/ood_core/OodCore/Job/Script
#
# Example for Slurm
#
# @example Specify nodes with specific features for all jobs
#script:
# native: [ "-N", "<%= bc_num_slots.blank? ? 1 : bc_num_slots.to_i %>", "-C", "c12" ]
# Examples for PBS/Torque
#
# @example Specify the PPN for all jobs
#script:
# native:
# resources:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment