diff options
author | tlatorre <tlatorre@uchicago.edu> | 2019-05-24 14:13:48 -0400 |
---|---|---|
committer | tlatorre <tlatorre@uchicago.edu> | 2019-05-24 14:13:48 -0400 |
commit | c43bb688c6cfac6cee39612b862d8a909f150493 (patch) | |
tree | f8aefea9dc66dedf62f4350f73c032629efafe1b /utils/submit_template.submit | |
parent | 38a2d79ea9fac199b34653f3f89dc731d5b84b8c (diff) | |
download | sddm-c43bb688c6cfac6cee39612b862d8a909f150493.tar.gz sddm-c43bb688c6cfac6cee39612b862d8a909f150493.tar.bz2 sddm-c43bb688c6cfac6cee39612b862d8a909f150493.zip |
add a script to submit jobs to the grid
Diffstat (limited to 'utils/submit_template.submit')
-rw-r--r-- | utils/submit_template.submit | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/utils/submit_template.submit b/utils/submit_template.submit new file mode 100644 index 0000000..4ce7ce7 --- /dev/null +++ b/utils/submit_template.submit @@ -0,0 +1,24 @@ +# We need the job to run our executable script, with the +# input.txt filename as an argument, and to transfer the +# relevant input and output files: +executable = @executable +arguments = @args +transfer_input_files = @transfer_input_files + +transfer_output_files = @transfer_output_files + +error = @error +output = @output +log = @log + +# The below are good base requirements for first testing jobs on OSG, +# if you don't have a good idea of memory and disk usage. +requirements = (OSGVO_OS_STRING == "RHEL 7") && (OpSys == "LINUX") +request_cpus = 1 +request_memory = 1 GB +request_disk = 1 GB + +# Queue one job with the above specifications. +queue 1 + ++ProjectName = "SNOplus" |