Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:15:44

0001 #ifndef HeterogeneousCore_CUDAUtilities_interface_cachingAllocators_h
0002 #define HeterogeneousCore_CUDAUtilities_interface_cachingAllocators_h
0003 
0004 namespace cms::cuda::allocator {
0005   // Use caching or not
0006   constexpr bool useCaching = true;
0007 
0008   // these intended to be called only from CUDAService
0009   void cachingAllocatorsConstruct();
0010   void cachingAllocatorsFreeCached();
0011 }  // namespace cms::cuda::allocator
0012 
0013 #endif