-
Notifications
You must be signed in to change notification settings - Fork 496
Expand file tree
/
Copy pathREADME
More file actions
37 lines (26 loc) · 1.56 KB
/
README
File metadata and controls
37 lines (26 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
## Test Workflows
### FLP Qualification:
Initial mockup for a generic FLP workflow
This is currently just an refactoring of the o2ParalleWorkflow test,
with a bit more comments to indicate what the various parts do.
There are two layers of processing, one which is parallel in the
subspecification (i.e. in the channels), the second one which is
parallel in time, i.e. if the subtimeframe processing requires extra
cores and longer latency in order to complete. The number of processor
for the two layers can be controlled via the command line options.
The connections to Readout and DataDistribution are not actually there
yet, but they come next.
Synopsis: flpQualification [options]
Relevant options:
* --2-layer-jobs <n> : number of data parallel workers in the first processing
layer
* --3-layer-pipelining <m> : numer of time pipelined workers in the second processing
layer.
* --input-type <type>: where <type> can be `readout' or `stfb'. The former will assume messages
do not have a O2 Data Model structure and it will enumerate each message with a custom DataHeader /
DataProcessingHeader. The latter will assume that the messages already come in proper (header, payload)
pairs and that the header already has at least a DataHeader and a DataProcessingHeader in it.
Readout proxy channel configuration can be done by passing the option as it
follows:
--readout-proxy '--channel-config "name=readout-proxy,type=pair,method=connect,transport=shmem,address=ipc:///tmp/readout-pipe-0,rateLogging=1"'
These must match appropriately the configuration of `readout.exe`.