Skip to content
Snippets Groups Projects
Commit 740b4769 authored by Jan David Mol's avatar Jan David Mol
Browse files

Task #10118: Ignore Cobalt.OutputProc.executable (as it is superfluous after...

Task #10118: Ignore Cobalt.OutputProc.executable (as it is superfluous after reading lofarinit.sh) and use numactl on node 0 always
parent d8c53d7e
No related branches found
No related tags found
No related merge requests found
...@@ -245,7 +245,6 @@ fi ...@@ -245,7 +245,6 @@ fi
SSH_USER_NAME=$(getkey Cobalt.OutputProc.userName $USER) SSH_USER_NAME=$(getkey Cobalt.OutputProc.userName $USER)
SSH_PUBLIC_KEY=$(getkey Cobalt.OutputProc.sshPublicKey) SSH_PUBLIC_KEY=$(getkey Cobalt.OutputProc.sshPublicKey)
SSH_PRIVATE_KEY=$(getkey Cobalt.OutputProc.sshPrivateKey) SSH_PRIVATE_KEY=$(getkey Cobalt.OutputProc.sshPrivateKey)
OUTPUT_PROC_EXECUTABLE=$(getkey Cobalt.OutputProc.executable)
OBSERVATIONID=$(getkey Observation.ObsID 0) OBSERVATIONID=$(getkey Observation.ObsID 0)
read_cluster_model read_cluster_model
...@@ -355,7 +354,7 @@ echo "[outputProc] pid file = $PID_LIST_FILE" ...@@ -355,7 +354,7 @@ echo "[outputProc] pid file = $PID_LIST_FILE"
touch $PID_LIST_FILE touch $PID_LIST_FILE
# Construct full command line for outputProc # Construct full command line for outputProc
OUTPUTPROC_CMDLINE="source $OUTPUTPROC_ROOT/lofarinit.sh; export QUEUE_PREFIX=$QUEUE_PREFIX LOFARENV=$LOFARENV; $OUTPUT_PROC_EXECUTABLE $OBSERVATIONID" OUTPUTPROC_CMDLINE="source $OUTPUTPROC_ROOT/lofarinit.sh; export QUEUE_PREFIX=$QUEUE_PREFIX LOFARENV=$LOFARENV; numactl --cpunodebind=0 --preferred=0 outputProc $OBSERVATIONID"
# Wrap command line with Docker if required # Wrap command line with Docker if required
if $DOCKER; then if $DOCKER; then
......
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