STT-tensorflow/tensorflow/compiler/xla/service/generic_transfer_manager.cc
Jacques Pienaar ccd8079e57 Merge changes from github.
PiperOrigin-RevId: 189231636
2018-03-15 13:03:19 -07:00

171 lines
6.6 KiB
C++

/* 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 "tensorflow/compiler/xla/service/generic_transfer_manager.h"
#include <string>
#include <utility>
#include <vector>
#include "tensorflow/compiler/xla/layout_util.h"
#include "tensorflow/compiler/xla/literal_util.h"
#include "tensorflow/compiler/xla/service/interpreter/platform_id.h"
#include "tensorflow/compiler/xla/shape_util.h"
#include "tensorflow/compiler/xla/status_macros.h"
#include "tensorflow/compiler/xla/statusor.h"
#include "tensorflow/compiler/xla/types.h"
#include "tensorflow/compiler/xla/util.h"
#include "tensorflow/compiler/xla/xla_data.pb.h"
#include "tensorflow/core/lib/core/errors.h"
#include "tensorflow/core/platform/logging.h"
#include "tensorflow/core/platform/stream_executor_no_cuda.h"
namespace se = ::perftools::gputools;
namespace xla {
GenericTransferManager::GenericTransferManager(se::Platform::Id platform_id,
size_t pointer_size)
: platform_id_(platform_id), pointer_size_(pointer_size) {}
se::Platform::Id GenericTransferManager::PlatformId() const {
return platform_id_;
}
Status GenericTransferManager::WriteSingleTupleIndexTable(
perftools::gputools::StreamExecutor* executor,
tensorflow::gtl::ArraySlice<se::DeviceMemoryBase> elements,
const Shape& shape, perftools::gputools::DeviceMemoryBase* region) {
TF_RET_CHECK(elements.size() == ShapeUtil::TupleElementCount(shape));
std::vector<const void*> element_pointers;
for (const se::DeviceMemoryBase& element : elements) {
element_pointers.push_back(element.opaque());
}
return TransferBufferToDevice(executor, GetByteSizeRequirement(shape),
element_pointers.data(), region);
}
StatusOr<std::unique_ptr<Literal>>
GenericTransferManager::TransferLiteralFromDevice(
se::StreamExecutor* executor, const ShapedBuffer& device_buffer) {
VLOG(2) << "transferring literal from device ordinal "
<< executor->device_ordinal() << "; device buffer: " << device_buffer;
TF_RET_CHECK(executor->device_ordinal() == device_buffer.device_ordinal());
// The on-host and on-device shape should always be the same for the generic
// transfer manager.
TF_RET_CHECK(ShapeUtil::Equal(device_buffer.on_device_shape(),
device_buffer.on_host_shape()));
std::unique_ptr<Literal> literal =
Literal::CreateFromShape(device_buffer.on_host_shape());
TF_RETURN_IF_ERROR(ShapeUtil::ForEachSubshapeWithStatus(
device_buffer.on_host_shape(),
[&](const Shape& subshape, const ShapeIndex& index) -> Status {
if (!ShapeUtil::IsTuple(subshape)) {
TF_RETURN_IF_ERROR(TransferBufferFromDevice(
executor,
/*source=*/device_buffer.buffer(index),
/*size=*/GetByteSizeRequirement(subshape),
/*destination=*/
literal->untyped_data(index)));
}
return Status::OK();
}));
return std::move(literal);
}
Status GenericTransferManager::TransferLiteralToDevice(
se::StreamExecutor* executor, const Literal& literal,
const ShapedBuffer& device_buffer) {
const Shape& shape = literal.shape();
VLOG(2) << "transferring literal shape to device: "
<< ShapeUtil::HumanString(shape)
<< "; device buffer: " << device_buffer;
// The on-host and on-device shape should always be the same for the generic
// transfer manager.
TF_RET_CHECK(ShapeUtil::Equal(device_buffer.on_device_shape(),
device_buffer.on_host_shape()));
TF_RET_CHECK(
ShapeUtil::Compatible(literal.shape(), device_buffer.on_host_shape()));
TF_RET_CHECK(executor->device_ordinal() == device_buffer.device_ordinal());
TF_RETURN_IF_ERROR(WriteTupleIndexTables(executor, device_buffer));
return ShapeUtil::ForEachSubshapeWithStatus(
device_buffer.on_host_shape(),
[&](const Shape& device_subshape, const ShapeIndex& index) -> Status {
se::DeviceMemoryBase device_memory = device_buffer.buffer(index);
if (ShapeUtil::IsArray(device_subshape)) {
TF_RET_CHECK(GetByteSizeRequirement(device_subshape) ==
device_memory.size());
// Element is array-shaped: transfer array data to device buffer.
const auto subliteral = LiteralView::Create(literal, index);
std::unique_ptr<Literal> relayed_out_literal;
const void* source;
if (LayoutUtil::Equal(device_subshape.layout(),
subliteral.shape().layout())) {
source = subliteral.untyped_data();
} else {
// Relayout data before transferring.
relayed_out_literal = subliteral.Relayout(device_subshape.layout(),
/*shape_index=*/{});
source = relayed_out_literal->untyped_data();
}
return TransferBufferToDevice(
executor,
/*size=*/GetByteSizeRequirement(device_subshape), source,
&device_memory);
}
return Status::OK();
});
}
Status GenericTransferManager::TransferLiteralToInfeed(
se::StreamExecutor* executor, const Literal& literal) {
return Unimplemented("Generic transfer to Infeed");
}
Status GenericTransferManager::TransferBufferToInfeed(
perftools::gputools::StreamExecutor* executor, int64 size,
const void* source) {
return Unimplemented("Generic transfer to Infeed");
}
Status GenericTransferManager::TransferLiteralFromOutfeed(
perftools::gputools::StreamExecutor* executor, const Shape& literal_shape,
Literal* literal) {
return Unimplemented(
"Outfeed is not supported on this platform (b/30467474)");
}
Status GenericTransferManager::ResetDevices(
tensorflow::gtl::ArraySlice<perftools::gputools::StreamExecutor*>
/*executors*/) {
return Unimplemented(
"Device reset is not yet supported on this platform (b/30481585)");
}
int64 GenericTransferManager::GetByteSizeRequirement(const Shape& shape) const {
return ShapeUtil::ByteSizeOf(shape, pointer_size_);
}
} // namespace xla