Update 'computing_htcondor'

Blake Leverington 2021-07-28 11:40:42 +02:00
parent 36fd19733a
commit cf74aca5ab

@ -1,15 +1,15 @@
# HTCondor use on the d0 cluster # HTCondor use on the d0 cluster
%TOC% Basic use, see the manual entry from the command line:
Basic use, see the manual entry from the command line: ```
`man condor_submit` man condor_submit
```
You can find example submission files in `/auto/work/zhelezov/singularity/batch_centos7` .
A more descriptive explanation is found here: https://research.cs.wisc.edu/htcondor/manual/v7.6/2_5Submitting_Job.html especially if you need to transfer input and output files.
An example .sub file: An example .sub file:
```emacs ```cpp
# Generic job which will run under local CentOS7 conteiner, on modern servers only # Generic job which will run under local CentOS7 conteiner, on modern servers only
# What to run and arguments, can (and probably always should be) a script # What to run and arguments, can (and probably always should be) a script
@ -86,6 +86,7 @@ mkdir -p out
mkdir -p log mkdir -p log
condor_submit -file job.sub condor_submit -file job.sub
``` ```
Files will be returned to this folder.
You can test your executable or script interactively via: You can test your executable or script interactively via: