diff --git a/lib/allocator/AlignedAllocator.cc b/lib/allocator/AlignedAllocator.cc index 629c5082..ed27a8bd 100644 --- a/lib/allocator/AlignedAllocator.cc +++ b/lib/allocator/AlignedAllocator.cc @@ -6,6 +6,7 @@ NAMESPACE_BEGIN(Grid); MemoryStats *MemoryProfiler::stats = nullptr; bool MemoryProfiler::debug = false; +#ifdef POINTER_CACHE int PointerCache::victim; PointerCache::PointerCacheEntry PointerCache::Entries[PointerCache::Ncache]; @@ -63,7 +64,7 @@ void *PointerCache::Lookup(size_t bytes) { } return NULL; } - +#endif void check_huge_pages(void *Buf,uint64_t BYTES) { diff --git a/lib/allocator/AlignedAllocator.h b/lib/allocator/AlignedAllocator.h index 17c9d476..dca43877 100644 --- a/lib/allocator/AlignedAllocator.h +++ b/lib/allocator/AlignedAllocator.h @@ -40,8 +40,12 @@ Author: Peter Boyle #include #endif + NAMESPACE_BEGIN(Grid); +// Move control to configure.ac and Config.h? +#undef POINTER_CACHE +#ifdef POINTER_CACHE class PointerCache { private: @@ -63,7 +67,8 @@ public: static void *Lookup(size_t bytes) ; }; - +#endif + std::string sizeString(size_t bytes); struct MemoryStats @@ -152,7 +157,12 @@ public: size_type bytes = __n*sizeof(_Tp); profilerAllocate(bytes); + +#ifdef POINTER_CACHE _Tp *ptr = (_Tp *) PointerCache::Lookup(bytes); +#else + pointer ptr = nullptr; +#endif // if ( ptr != NULL ) // std::cout << "alignedAllocator "<<__n << " cache hit "<< std::hex << ptr < inline bool operator==(const alignedAllocator<_Tp>&, const alignedAllocator<_Tp>&){ return true; } template inline bool operator!=(const alignedAllocator<_Tp>&, const alignedAllocator<_Tp>&){ return false; } +// Deprecate shmem and comm allocator + ////////////////////////////////////////////////////////////////////////////////////////// // MPI3 : comms must use shm region // SHMEM: comms must use symmetric heap @@ -208,6 +227,7 @@ extern "C" { #define PARANOID_SYMMETRIC_HEAP #endif +#if 0 template class commAllocator { public: @@ -297,14 +317,16 @@ public: }; template inline bool operator==(const commAllocator<_Tp>&, const commAllocator<_Tp>&){ return true; } template inline bool operator!=(const commAllocator<_Tp>&, const commAllocator<_Tp>&){ return false; } +#endif //////////////////////////////////////////////////////////////////////////////// // Template typedefs //////////////////////////////////////////////////////////////////////////////// +template using commAllocator = alignedAllocator; template using Vector = std::vector >; -template using commVector = std::vector >; +template using commVector = std::vector >; template using Matrix = std::vector > >; - + NAMESPACE_END(Grid); #endif