Skip to content
Snippets Groups Projects
Commit 752fa10f authored by Chris Broekema's avatar Chris Broekema
Browse files

BugID: 1011

Add support for the "Storage.PsetsPerStorage" option, allowing more than one
Pset to write to a storage node.
parent 70819273
No related branches found
No related tags found
No related merge requests found
...@@ -84,27 +84,30 @@ class InputSection(Section): ...@@ -84,27 +84,30 @@ class InputSection(Section):
host = copy.deepcopy(myhost) host = copy.deepcopy(myhost)
slaves = host.getSlaves() slaves = host.getSlaves()
inputNodes = parset.getInputNodes() inputNodes = parset.getInputNodes()
outputNodes = range(1, self.nCells + 1) outputNodes = range(1, self.nCells + 1)
allNodes = inputNodes + [node for node in outputNodes if not node in inputNodes] allNodes = inputNodes + [node for node in outputNodes if not node in inputNodes]
inputIndices = range(len(inputNodes)) inputIndices = range(len(inputNodes))
outputIndices = [allNodes.index(node) for node in outputNodes] outputIndices = [allNodes.index(node) for node in outputNodes]
newslaves = [slaves[ind - 1] for ind in allNodes] print("slaves %d" % len(slaves))
host.setSlaves(newslaves) print("allNodes %d" % len(allNodes))
self.noProcesses = len(newslaves)
newslaves = [slaves[ind - 1] for ind in allNodes]
host.setSlaves(newslaves)
self.noProcesses = len(newslaves)
Section.__init__(self, parset, \ Section.__init__(self, parset, \
'Appl/CEP/CS1/CS1_InputSection', \ 'Appl/CEP/CS1/CS1_InputSection', \
host = host, \ host = host, \
buildvar = 'gnu64_mpich-opt') buildvar = 'gnu64_mpich-opt')
self.parset['Input.InputNodes'] = inputIndices self.parset['Input.InputNodes'] = inputIndices
self.parset['Input.OutputNodes'] = outputIndices self.parset['Input.OutputNodes'] = outputIndices
bglprocIPs = [newslaves[j].getExtIP() for j in outputIndices] bglprocIPs = [newslaves[j].getExtIP() for j in outputIndices]
self.parset['Connections.Input_BGLProc.ServerHosts'] = '[' + ','.join(bglprocIPs) + ']' self.parset['Connections.Input_BGLProc.ServerHosts'] = '[' + ','.join(bglprocIPs) + ']'
def run(self, runlog, noRuns, runCmd = None): def run(self, runlog, noRuns, runCmd = None):
Section.run(self, runlog, noRuns, runCmd) Section.run(self, runlog, noRuns, runCmd)
...@@ -113,18 +116,19 @@ class StorageSection(Section): ...@@ -113,18 +116,19 @@ class StorageSection(Section):
def __init__(self, parset, host): def __init__(self, parset, host):
nSubbands = parset.getInt32('Observation.NSubbands') nSubbands = parset.getInt32('Observation.NSubbands')
nSubbandsPerCell = parset.getInt32('General.SubbandsPerPset') * parset.getInt32('BGLProc.PsetsPerCell') nSubbandsPerCell = parset.getInt32('General.SubbandsPerPset')
if not nSubbands % nSubbandsPerCell == 0: nPsetsPerStorage = parset.getInt32('Storage.PsetsPerStorage');
raise Exception('Not a integer number of subbands per compute cells!') if not nSubbands % (nSubbandsPerCell * nPsetsPerStorage) == 0:
raise Exception('Not a integer number of subbands per storage node!')
self.noProcesses = nSubbands / nSubbandsPerCell self.noProcesses = nSubbands / (nSubbandsPerCell * nPsetsPerStorage)
Section.__init__(self, parset, \ Section.__init__(self, parset, \
'Appl/CEP/CS1/CS1_Storage', \ 'Appl/CEP/CS1/CS1_Storage', \
host = host, \ host = host, \
buildvar = 'gnu32_openmpi-opt') buildvar = 'gnu32_openmpi-opt')
storageIPs = [s.getExtIP() for s in self.host.getSlaves(self.noProcesses)] storageIPs = [s.getExtIP() for s in self.host.getSlaves(self.noProcesses * nPsetsPerStorage)]
self.parset['Connections.BGLProc_Storage.ServerHosts'] = '[' + ','.join(storageIPs) + ']' self.parset['Connections.BGLProc_Storage.ServerHosts'] = '[' + ','.join(storageIPs) + ']'
...@@ -135,8 +139,10 @@ class BGLProcSection(Section): ...@@ -135,8 +139,10 @@ class BGLProcSection(Section):
nSubbands = parset.getInt32('Observation.NSubbands') nSubbands = parset.getInt32('Observation.NSubbands')
nSubbandsPerCell = parset.getInt32('General.SubbandsPerPset') * parset.getInt32('BGLProc.PsetsPerCell') nSubbandsPerCell = parset.getInt32('General.SubbandsPerPset') * parset.getInt32('BGLProc.PsetsPerCell')
if not nSubbands % nSubbandsPerCell == 0: if not nSubbands % nSubbandsPerCell == 0:
raise Exception('Not a integer number of compute cells!') raise Exception('Not a integer number of compute cells!')
nCells = nSubbands / nSubbandsPerCell nCells = nSubbands / nSubbandsPerCell
self.noProcesses = int(nCells) * parset.getInt32('BGLProc.NodesPerPset') * parset.getInt32('BGLProc.PsetsPerCell') self.noProcesses = int(nCells) * parset.getInt32('BGLProc.NodesPerPset') * parset.getInt32('BGLProc.PsetsPerCell')
self.noProcesses = 256 # The calculation above is not correct, because some ranks aren't used self.noProcesses = 256 # The calculation above is not correct, because some ranks aren't used
......
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