ATLAS Offline Software
DeviceMgmtSvcConfig.py
Go to the documentation of this file.
1 #!/usr/bin/env athena.py
2 # Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3 
4 from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
5 from AthenaConfiguration.ComponentFactory import CompFactory
6 
7 def DeviceMgmtSvcCfg(flags, xclbin_list):
8 
9  result = ComponentAccumulator()
10 
11  XRTSvc = CompFactory.AthXRT.DeviceMgmtSvc(XclbinPathsList = xclbin_list)
12  result.addService(XRTSvc)
13 
14  return result
python.JetAnalysisCommon.ComponentAccumulator
ComponentAccumulator
Definition: JetAnalysisCommon.py:302
DeviceMgmtSvcConfig.DeviceMgmtSvcCfg
def DeviceMgmtSvcCfg(flags, xclbin_list)
Definition: DeviceMgmtSvcConfig.py:7