File indexing completed on 2024-12-30 23:27:32
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def alpaka_serial_sync_TestAlpakaGlobalProducer(*args, **kwargs):
0004 mod = cms.EDProducer('alpaka_serial_sync::TestAlpakaGlobalProducer',
0005 eventSetupSource = cms.ESInputTag('', ''),
0006 eventSetupSourceMulti = cms.ESInputTag('', ''),
0007 size = cms.PSet(
0008 alpaka_serial_sync = cms.required.int32,
0009 alpaka_cuda_async = cms.required.int32,
0010 alpaka_rocm_async = cms.required.int32
0011 ),
0012 mightGet = cms.optional.untracked.vstring,
0013 alpaka = cms.untracked.PSet(
0014 backend = cms.untracked.string(''),
0015 synchronize = cms.optional.untracked.bool
0016 )
0017 )
0018 for a in args:
0019 mod.update_(a)
0020 mod.update_(kwargs)
0021 return mod