aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/framework/allocator_registry.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/core/framework/allocator_registry.cc')
-rw-r--r--tensorflow/core/framework/allocator_registry.cc66
1 files changed, 66 insertions, 0 deletions
diff --git a/tensorflow/core/framework/allocator_registry.cc b/tensorflow/core/framework/allocator_registry.cc
new file mode 100644
index 0000000000..792b1ceb5a
--- /dev/null
+++ b/tensorflow/core/framework/allocator_registry.cc
@@ -0,0 +1,66 @@
+/* Copyright 2017 The TensorFlow Authors. All Rights Reserved.
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+==============================================================================*/
+
+#include <string>
+
+#include "tensorflow/core/framework/allocator_registry.h"
+#include "tensorflow/core/platform/logging.h"
+
+
+namespace tensorflow {
+
+// static
+AllocatorRegistry* AllocatorRegistry::Global() {
+ static AllocatorRegistry* global_allocator_registry = new AllocatorRegistry;
+ return global_allocator_registry;
+}
+
+bool AllocatorRegistry::CheckForDuplicates(const string& name, int priority) {
+ for (auto entry : allocators_) {
+ if (!name.compare(entry.name) && priority == entry.priority) {
+ return true;
+ }
+ }
+ return false;
+}
+
+void AllocatorRegistry::Register(const string& name, int priority,
+ Allocator* allocator) {
+ CHECK(!name.empty()) << "Need a valid name for Allocator";
+ CHECK_GE(priority, 0) << "Priority needs to be non-negative";
+ CHECK(!CheckForDuplicates(name, priority)) << "Allocator with name: [" << name
+ << "] and priority: [" << priority
+ << "] already registered";
+
+ AllocatorRegistryEntry tmp_entry;
+ tmp_entry.name = name;
+ tmp_entry.priority = priority;
+ tmp_entry.allocator = allocator;
+
+ allocators_.push_back(tmp_entry);
+ int high_pri = -1;
+ for (auto entry : allocators_) {
+ if (high_pri < entry.priority) {
+ m_curr_allocator_ = entry.allocator;
+ high_pri = entry.priority;
+ }
+ }
+}
+
+Allocator* AllocatorRegistry::GetAllocator() {
+ return CHECK_NOTNULL(m_curr_allocator_);
+}
+
+} // namespace tensorflow