File indexing completed on 2025-02-07 14:23:51
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def alpaka_serial_sync_TestAlpakaStreamSynchronizingProducerToDevice(*args, **kwargs):
0004 mod = cms.EDProducer('alpaka_serial_sync::TestAlpakaStreamSynchronizingProducerToDevice',
0005 size = cms.PSet(
0006 alpaka_serial_sync = cms.required.int32,
0007 alpaka_cuda_async = cms.required.int32,
0008 alpaka_rocm_async = cms.required.int32
0009 ),
0010 mightGet = cms.optional.untracked.vstring,
0011 alpaka = cms.untracked.PSet(
0012 backend = cms.untracked.string(''),
0013 synchronize = cms.optional.untracked.bool
0014 )
0015 )
0016 for a in args:
0017 mod.update_(a)
0018 mod.update_(kwargs)
0019 return mod