/* 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.
|
==============================================================================*/
|
|
#ifndef TENSORFLOW_COMPILER_TF2XLA_XLA_COMPILATION_DEVICE_H_
|
#define TENSORFLOW_COMPILER_TF2XLA_XLA_COMPILATION_DEVICE_H_
|
|
#include <memory>
|
|
#include "tensorflow/core/common_runtime/local_device.h"
|
#include "tensorflow/core/framework/device_base.h"
|
#include "tensorflow/core/framework/tensor.h"
|
#include "tensorflow/core/lib/core/status.h"
|
#include "tensorflow/core/platform/mem.h"
|
#include "tensorflow/core/public/session_options.h"
|
|
namespace tensorflow {
|
|
// Class is defined in xla_compilation_device.cc, reference
|
// included here only so the XlaCompilationDevice allocator_ member can be
|
// declared.
|
class XlaCompilationAllocator;
|
|
// This is a 'dummy' TensorFlow device that is only used to execute a
|
// subgraph of XLA compilation Ops to construct a compiled version
|
// of the subgraph's computation. It has a 'dummy' allocator that
|
// backs each Tensor with an XlaExpression. The shape of the Tensor
|
// matches the shape of XlaExpression.
|
//
|
// We deliberately don't register a device factory because we *never*
|
// want placement to put Ops on a compilation device. The device is created
|
// manually, not using a factory.
|
//
|
// XLA compilation is not thread-safe. OpKernels registered on the
|
// XlaCompilationDevice must not use threads or concurrency.
|
class XlaCompilationDevice : public LocalDevice {
|
public:
|
XlaCompilationDevice(const SessionOptions& options, DeviceType type);
|
|
~XlaCompilationDevice() override;
|
|
Allocator* GetAllocator(AllocatorAttributes attr) override;
|
|
void Compute(OpKernel* op_kernel, OpKernelContext* context) override;
|
|
Status Sync() override;
|
|
Status MakeTensorFromProto(const TensorProto& tensor_proto,
|
const AllocatorAttributes alloc_attrs,
|
Tensor* tensor) override;
|
|
private:
|
std::unique_ptr<XlaCompilationAllocator> allocator_;
|
};
|
|
} // namespace tensorflow
|
|
#endif // TENSORFLOW_COMPILER_TF2XLA_XLA_COMPILATION_DEVICE_H_
|