From 49b067db5e4044a07d2bae3e709ccb5ecf40d6f5 Mon Sep 17 00:00:00 2001
From: Jan David Mol <mol@astron.nl>
Date: Wed, 6 Mar 2019 11:13:49 +0000
Subject: [PATCH] COB-4: Expand avoidCores and gpu specifications if provided
 in short-hand notation in the parset.

---
 RTCP/Cobalt/CoInterface/src/Parset.cc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/RTCP/Cobalt/CoInterface/src/Parset.cc b/RTCP/Cobalt/CoInterface/src/Parset.cc
index e031026182b..c84830fe437 100644
--- a/RTCP/Cobalt/CoInterface/src/Parset.cc
+++ b/RTCP/Cobalt/CoInterface/src/Parset.cc
@@ -504,9 +504,9 @@ namespace LOFAR
 
         node.hostName = getString(prefix + "host", "localhost");
         node.cpu      = getInt(prefix + "cpu", -1);
-        node.avoidCores = getUint32Vector(prefix + "avoidCores", emptyVectorUnsigned);
+        node.avoidCores = getUint32Vector(prefix + "avoidCores", emptyVectorUnsigned, true);
         node.mpi_nic  = getString(prefix + "mpi_nic",  "");
-        node.gpus     = getUint32Vector(prefix + "gpus", vector<unsigned>(1,0)); // default to [0]
+        node.gpus     = getUint32Vector(prefix + "gpus", vector<unsigned>(1,0), true); // default to [0]
 
         // format: [CEP4:ib0,DragNet:ib0]
         node.out_nic  = "";
-- 
GitLab