From 36fd19733a49b227a7b9869fcb933ce8edc66108 Mon Sep 17 00:00:00 2001 From: Blake Leverington Date: Wed, 28 Jul 2021 11:32:28 +0200 Subject: [PATCH] Update 'computing_htcondor' --- computing_htcondor.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/computing_htcondor.md b/computing_htcondor.md index ea2cb3b..078faaf 100644 --- a/computing_htcondor.md +++ b/computing_htcondor.md @@ -9,7 +9,7 @@ You can find example submission files in `/auto/work/zhelezov/singularity/batch_ An example .sub file: -```vim +```emacs # 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 @@ -56,7 +56,6 @@ log = log/job.$(ClusterId).log # The number is the number of subjobs queue 2 - ``` @@ -75,7 +74,6 @@ env #outputs the current environment in stdout which lb-run #check lb-run is there lb-run Urania/latest root -l --version #outputs ROOT version to stderr lb-run Urania/latest root-config --cflags #check the ROOT compilation flags, outputs in stdout - ``` @@ -87,14 +85,12 @@ mkdir -p err #setup the output directories to keep things clean mkdir -p out mkdir -p log condor_submit -file job.sub - ``` You can test your executable or script interactively via: -``` +```console condor_submit -interactive - ``` which will open a shell on the machine where you can run your executable by hand.