/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
HeterogeneousCore/CUDAUtilities/interface/cachingAllocators.h
13 строк
410 B
Matti Kortelainen
Add public interface for constructing and freeing caching allocators
19 авг 2021, 20:28
19 авг 2021, 20:28
e5ed64c
Код
Авторство
О чём код?
#ifndef HeterogeneousCore_CUDAUtilities_interface_cachingAllocators_h #define HeterogeneousCore_CUDAUtilities_interface_cachingAllocators_h namespace cms::cuda::allocator { // Use caching or not constexpr bool useCaching = true; // these intended to be called only from CUDAService void cachingAllocatorsConstruct(); void cachingAllocatorsFreeCached(); } // namespace cms::cuda::allocator #endif