Home
last modified time | relevance | path

Searched refs:sub_allocators (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/core/framework/
Dallocator_registry.cc116 if (best_entry->sub_allocators.size() < static_cast<size_t>(index + 1)) { in GetSubAllocator()
117 best_entry->sub_allocators.resize(index + 1); in GetSubAllocator()
119 if (!best_entry->sub_allocators[index].get()) { in GetSubAllocator()
120 best_entry->sub_allocators[index].reset( in GetSubAllocator()
123 return best_entry->sub_allocators[index].get(); in GetSubAllocator()
Dallocator_registry.h102 std::vector<std::unique_ptr<SubAllocator>> sub_allocators; member