aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/gdr
diff options
context:
space:
mode:
authorGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-08-27 14:40:38 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-08-27 14:40:38 -0700
commit91f33732cb15f51eaf6ec86c82e42a74e351e061 (patch)
treecb6c909f0c2be2cdc10a5c51360f2506e620f188 /tensorflow/contrib/gdr
parent3b4df1b62c5b2c1302ebf23a9040cc749f0dd23d (diff)
parente634e74a1628d763bc826dc733a4167998edde32 (diff)
Merge pull request #21766 from yongtang:21696-gdr-rdma
PiperOrigin-RevId: 210432093
Diffstat (limited to 'tensorflow/contrib/gdr')
-rw-r--r--tensorflow/contrib/gdr/gdr_memory_manager.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/tensorflow/contrib/gdr/gdr_memory_manager.cc b/tensorflow/contrib/gdr/gdr_memory_manager.cc
index 7e6a0f14f6..726f74c7b7 100644
--- a/tensorflow/contrib/gdr/gdr_memory_manager.cc
+++ b/tensorflow/contrib/gdr/gdr_memory_manager.cc
@@ -186,22 +186,22 @@ class GdrMemoryManager : public RemoteMemoryManager {
// TODO(byronyi): remove this class and its registration when the default
// cpu_allocator() returns visitable allocator, or cpu_allocator() is no
// longer in use.
-class BFCRdmaAllocator : public BFCAllocator {
+class BFCGdrAllocator : public BFCAllocator {
public:
- BFCRdmaAllocator()
+ BFCGdrAllocator()
: BFCAllocator(new BasicCPUAllocator(port::kNUMANoAffinity), 1LL << 36,
- true, "cpu_rdma_bfc") {}
+ true, "cpu_gdr_bfc") {}
};
-class BFCRdmaAllocatorFactory : public AllocatorFactory {
+class BFCGdrAllocatorFactory : public AllocatorFactory {
public:
- Allocator* CreateAllocator() override { return new BFCRdmaAllocator; }
+ Allocator* CreateAllocator() override { return new BFCGdrAllocator; }
virtual SubAllocator* CreateSubAllocator(int numa_node) {
return new BasicCPUAllocator(numa_node);
}
};
-REGISTER_MEM_ALLOCATOR("BFCRdmaAllocator", 101, BFCRdmaAllocatorFactory);
+REGISTER_MEM_ALLOCATOR("BFCGdrAllocator", 102, BFCGdrAllocatorFactory);
GdrMemoryManager::GdrMemoryManager(const string& host, const string& port)
: host_(host),