Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-07-02 00:53:48

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process( "TEST" )
0004 
0005 process.options = cms.untracked.PSet(
0006     numberOfThreads = cms.untracked.uint32( 4 ),
0007     numberOfStreams = cms.untracked.uint32( 0 ),
0008 )
0009 
0010 process.load('FWCore.MessageService.MessageLogger_cfi')
0011 process.MessageLogger.AlpakaService = {}
0012 
0013 from HeterogeneousCore.AlpakaServices.AlpakaServiceSerialSync_cfi import AlpakaServiceSerialSync as _AlpakaServiceSerialSync
0014 process.AlpakaServiceSerialSync = _AlpakaServiceSerialSync.clone(
0015     verbose = True,
0016     hostAllocator = cms.untracked.PSet(
0017       binGrowth = cms.untracked.uint32(2),
0018       minBin = cms.untracked.uint32(8),
0019       maxBin = cms.untracked.uint32(30),
0020       maxCachedBytes = cms.untracked.uint64(0),
0021       maxCachedFraction = cms.untracked.double(0.8),
0022       fillAllocations = cms.untracked.bool(True),
0023       fillAllocationValue = cms.untracked.uint32(165),
0024       fillReallocations = cms.untracked.bool(True),
0025       fillReallocationValue = cms.untracked.uint32(90),
0026       fillDeallocations = cms.untracked.bool(True),
0027       fillDeallocationValue = cms.untracked.uint32(105),
0028       fillCaches = cms.untracked.bool(True),
0029       fillCacheValue = cms.untracked.uint32(150)
0030     ),
0031     deviceAllocator = cms.untracked.PSet(
0032       binGrowth = cms.untracked.uint32(2),
0033       minBin = cms.untracked.uint32(8),
0034       maxBin = cms.untracked.uint32(30),
0035       maxCachedBytes = cms.untracked.uint64(0),
0036       maxCachedFraction = cms.untracked.double(0.8),
0037       fillAllocations = cms.untracked.bool(True),
0038       fillAllocationValue = cms.untracked.uint32(165),
0039       fillReallocations = cms.untracked.bool(True),
0040       fillReallocationValue = cms.untracked.uint32(90),
0041       fillDeallocations = cms.untracked.bool(True),
0042       fillDeallocationValue = cms.untracked.uint32(105),
0043       fillCaches = cms.untracked.bool(True),
0044       fillCacheValue = cms.untracked.uint32(150)
0045     )
0046 )
0047 
0048 process.source = cms.Source("EmptySource")
0049 
0050 process.maxEvents = cms.untracked.PSet(
0051     input = cms.untracked.int32( 0 )
0052 )