Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
atlas
athena
Merge requests
!56021
2022-08-18: Daily merge of 22.0 into master
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
2022-08-18: Daily merge of 22.0 into master
tadej/athena:sweep-2022-08-18
into
master
Overview
3
Commits
33
Pipelines
1
Changes
97
Merged
Tadej Novak
requested to merge
tadej/athena:sweep-2022-08-18
into
master
2 years ago
Overview
3
Commits
33
Pipelines
1
Changes
97
Expand
Merging
nightly/22.0/2022-08-18T2101
into
master
. No conflicts!
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
2539932b
33 commits,
2 years ago
97 files
+
703
−
712
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
97
Search (e.g. *.vue) (Ctrl+P)
Control/AthenaMP/python/AthenaMPConfig.py
+
16
−
21
Options
@@ -86,28 +86,25 @@ def AthenaMPCfg(configFlags):
AthenaSharedMemoryTool
=
CompFactory
.
AthenaSharedMemoryTool
if
configFlags
.
Input
.
Format
is
Format
.
BS
:
evSel
=
CompFactory
.
EventSelectorByteStream
(
"
EventSelector
"
)
evSel
=
CompFactory
.
EventSelectorByteStream
(
"
EventSelector
"
)
from
ByteStreamCnvSvc.ByteStreamConfig
import
ByteStreamReadCfg
bscfg
=
ByteStreamReadCfg
(
configFlags
)
result
.
merge
(
bscfg
)
else
:
evSel
=
CompFactory
.
EventSelectorAthenaPool
(
"
EventSelector
"
)
evSel
=
CompFactory
.
EventSelectorAthenaPool
(
"
EventSelector
"
)
# AthenaPoolCnvSvc
apcs
=
CompFactory
.
AthenaPoolCnvSvc
()
apcs
.
InputStreamingTool
=
AthenaSharedMemoryTool
(
"
InputStreamingTool
"
,
SharedMemoryName
=
"
InputStream
"
+
str
(
os
.
getpid
()),
UseMultipleSegments
=
True
)
result
.
addService
(
apcs
)
inputStreamingTool
=
AthenaSharedMemoryTool
(
"
InputStreamingTool
"
,
SharedMemoryName
=
f
"
InputStream
{
str
(
os
.
getpid
())
}
"
,
UseMultipleSegments
=
True
)
from
AthenaPoolCnvSvc.PoolReadConfig
import
PoolReadCfg
poolcfg
=
PoolReadCfg
(
configFlags
)
result
.
merge
(
poolcfg
)
result
.
merge
(
PoolReadCfg
(
configFlags
)
)
from
AthenaPoolCnvSvc.PoolCommonConfig
import
AthenaPoolCnvSvcCfg
result
.
merge
(
AthenaPoolCnvSvcCfg
(
configFlags
,
InputStreamingTool
=
inputStreamingTool
)
)
evSel
.
SharedMemoryTool
=
AthenaSharedMemoryTool
(
"
EventStreamingTool
"
,
SharedMemoryName
=
"
EventStream
"
+
str
(
os
.
getpid
()))
SharedMemoryName
=
f
"
EventStream
{
str
(
os
.
getpid
())
}
"
)
result
.
addService
(
evSel
)
if
use_shared_writer
:
@@ -116,17 +113,15 @@ def AthenaMPCfg(configFlags):
configFlags
.
Output
.
doWriteDAOD
,
configFlags
.
Output
.
doWriteRDO
))
or
configFlags
.
Output
.
HITSFileName
!=
''
:
AthenaSharedMemoryTool
=
CompFactory
.
AthenaSharedMemoryTool
apcs
=
CompFactory
.
AthenaPoolCnvSvc
()
apcs
.
OutputStreamingTool
+=
[
AthenaSharedMemoryTool
(
"
OutputStreamingTool_0
"
,
SharedMemoryName
=
"
OutputStream
"
+
str
(
os
.
getpid
()))
]
apcs
.
ParallelCompression
=
use_parallel_compression
result
.
addService
(
apcs
)
outputStreamingTool
=
AthenaSharedMemoryTool
(
"
OutputStreamingTool_0
"
,
SharedMemoryName
=
f
"
OutputStream
{
str
(
os
.
getpid
())
}
"
)
from
AthenaPoolCnvSvc.PoolWriteConfig
import
PoolWriteCfg
poolcfg
=
PoolWriteCfg
(
configFlags
)
result
.
merge
(
poolcfg
)
result
.
merge
(
PoolWriteCfg
(
configFlags
))
from
AthenaPoolCnvSvc.PoolCommonConfig
import
AthenaPoolCnvSvcCfg
result
.
merge
(
AthenaPoolCnvSvcCfg
(
configFlags
,
OutputStreamingTool
=
[
outputStreamingTool
],
ParallelCompression
=
use_parallel_compression
))
queue_provider
=
CompFactory
.
SharedEvtQueueProvider
(
UseSharedReader
=
use_shared_reader
,
IsPileup
=
mpevtloop
.
IsPileup
,
Loading