ATLAS Offline Software
Loading...
Searching...
No Matches
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
4from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
5from AthenaConfiguration.ComponentFactory import CompFactory
6
7def 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
DeviceMgmtSvcCfg(flags, xclbin_list)