aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/maybe_owning_device_memory.cc
diff options
context:
space:
mode:
authorGravatar Yunxing Dai <yunxing@google.com>2018-08-29 13:52:19 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-08-29 13:56:04 -0700
commit91c7cd5676624d8c364d7dc56bb50300bb9d210c (patch)
treed91ebb16034a7f0734978fcc825934d11526bb8f /tensorflow/compiler/xla/service/maybe_owning_device_memory.cc
parent065f9b833ffbb3b2f03d63febb186275674ba133 (diff)
New XLA API to launch a program.
1. Propose a new API with ability to do input/output. 2. Start to enable ABSL in TF's codebase. PiperOrigin-RevId: 210783617
Diffstat (limited to 'tensorflow/compiler/xla/service/maybe_owning_device_memory.cc')
-rw-r--r--tensorflow/compiler/xla/service/maybe_owning_device_memory.cc41
1 files changed, 41 insertions, 0 deletions
diff --git a/tensorflow/compiler/xla/service/maybe_owning_device_memory.cc b/tensorflow/compiler/xla/service/maybe_owning_device_memory.cc
new file mode 100644
index 0000000000..8269842426
--- /dev/null
+++ b/tensorflow/compiler/xla/service/maybe_owning_device_memory.cc
@@ -0,0 +1,41 @@
+/* Copyright 2018 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 "tensorflow/compiler/xla/service/maybe_owning_device_memory.h"
+#include "absl/types/variant.h"
+namespace xla {
+
+se::DeviceMemoryBase MaybeOwningDeviceMemory::AsDeviceMemoryBase() {
+ if (HasOwnership()) {
+ return absl::get<OwningDeviceMemory>(mem_).AsDeviceMemoryBase();
+ } else {
+ return absl::get<se::DeviceMemoryBase>(mem_);
+ }
+}
+
+bool MaybeOwningDeviceMemory::HasOwnership() const {
+ return absl::holds_alternative<OwningDeviceMemory>(mem_);
+}
+
+absl::optional<OwningDeviceMemory> MaybeOwningDeviceMemory::Release() {
+ if (!HasOwnership()) {
+ return {};
+ }
+ OwningDeviceMemory result = std::move(absl::get<OwningDeviceMemory>(mem_));
+ mem_ = result.AsDeviceMemoryBase();
+ return absl::make_optional<OwningDeviceMemory>(std::move(result));
+}
+
+} // namespace xla