Skip to content
Snippets Groups Projects
Commit 4f437bea authored by Martin Gels's avatar Martin Gels
Browse files

Bug 1005: Run InputSection on a normal machine

parent 392125b7
No related branches found
No related tags found
No related merge requests found
......@@ -13,14 +13,14 @@
OLAP.OLAP_Conn.BGLProc_Storage_Ports = [8300..8363]
# should be one of NULL(inputFromMemory), FILE, TCP, UDP, ETHERNET
OLAP.OLAP_Conn.station_Input_Transport = UDP
OLAP.OLAP_Conn.station_Input_Transport = TCP
OLAP.OLAP_Conn.rawDataServers = ["10.181.0.4"]
OLAP.OLAP_Conn.rawDataServers = ["10.181.0.2"]
OLAP.OLAP_Conn.rawDataPorts = [4000]
# Variables for Storage
OLAP.subbandsPerPset = 6 #6
OLAP.psetsPerStorage = 2 #3
OLAP.psetsPerStorage = 4 #3
OLAP.BGLProc.integrationSteps = 608 #768 at 200MHz
OLAP.BGLProc.nrPPFTaps=16
OLAP.BGLProc.coresPerPset = 16
......@@ -40,7 +40,7 @@ OLAP.DelayComp.nrCalcDelays = 16
OLAP.IPHeaderSize = 32
OLAP.EPAHeaderSize = 16
OLAP.nrTimesInFrame = 16
OLAP.nrSubbandsPerFrame = 18
OLAP.nrSubbandsPerFrame = 48
OLAP.nrBitsPerSample=16
OLAP.nrSecondsOfBuffer = 6
OLAP.maxNetworkDelay = 2.0 # 1 second extra added to compensate for timestamp bug
......@@ -77,8 +77,8 @@ Observation.Beam[8].angle2 = 0
Observation.nrBeams = 1
Observation.Beam[1].directionTypes = J2000
Observation.Beam[1].subbandList = [57,73,89,121,138,154,170,187,203,219,236,252,268,285,301,317,334,350,366,383,399,415,432,448]
Observation.Beam[1].beamletList = [0..23]
Observation.Beam[1].subbandList = [280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327]
Observation.Beam[1].beamletList = [0..47]
# example 2 beams:
#Observation.nrBeams = 2
......
......@@ -35,8 +35,9 @@ def doObservation(obsID, parset):
sys.exit(1)
sectionTable = dict({\
'BGLProcSection': BGLProcSection(parset, userId.getHost(), options.partition),
'StorageSection': StorageSection(parset, listfen)
'InputSection': InputSection(parset, list003),
#'BGLProcSection': BGLProcSection(parset, userId.getHost(), options.partition),
#'StorageSection': StorageSection(parset, listfen)
#Flagger(parset, listfen)
})
......
......@@ -142,6 +142,12 @@ class BGLProcSection(Section):
raise Exception('illegal number of runs')
Section.run(self, runlog, actualRuns, runCmd)
class InputSection(Section):
def __init__(self, parset, host):
Section.__init__(self, parset, \
'Appl/CEP/CS1/CS1_InputProc', \
host = host, \
buildvar = 'gnu_opt')
class GeneratorSection(Section):
def __init__(self, parset, host):
Section.__init__(self, parset, \
......
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