70 lines
2.3 KiB
C++
70 lines
2.3 KiB
C++
/* Copyright 2020 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_C_EAGER_IMMEDIATE_EXECUTION_OPERATION_H_
|
|
#define TENSORFLOW_C_EAGER_IMMEDIATE_EXECUTION_OPERATION_H_
|
|
|
|
#include <memory>
|
|
|
|
#include "absl/types/span.h"
|
|
#include "tensorflow/c/eager/abstract_operation.h"
|
|
#include "tensorflow/c/eager/immediate_execution_tensor_handle.h"
|
|
#include "tensorflow/c/tensor_interface.h"
|
|
#include "tensorflow/core/framework/device_attributes.pb.h"
|
|
#include "tensorflow/core/framework/op_def.pb.h"
|
|
#include "tensorflow/core/framework/types.pb.h"
|
|
#include "tensorflow/core/platform/casts.h"
|
|
#include "tensorflow/core/platform/status.h"
|
|
|
|
struct TFE_Op;
|
|
|
|
namespace tensorflow {
|
|
|
|
// Abstract interface to an operation.
|
|
class ImmediateExecutionOperation : public AbstractOperation {
|
|
public:
|
|
static constexpr AbstractOperationKind kKind = kImmediateExecution;
|
|
virtual void Clear() = 0;
|
|
|
|
virtual const tensorflow::OpDef* OpDef() const = 0;
|
|
|
|
virtual Status InputLength(const char* input_name, int* length) = 0;
|
|
virtual Status OutputLength(const char* output_name, int* length) = 0;
|
|
|
|
// Experimental
|
|
virtual Status SetUseXla(bool enable) = 0;
|
|
|
|
protected:
|
|
ImmediateExecutionOperation() : AbstractOperation(kKind) {}
|
|
~ImmediateExecutionOperation() override {}
|
|
};
|
|
|
|
namespace internal {
|
|
struct ImmediateExecutionOperationDeleter {
|
|
void operator()(ImmediateExecutionOperation* p) const {
|
|
if (p != nullptr) {
|
|
p->Release();
|
|
}
|
|
}
|
|
};
|
|
} // namespace internal
|
|
|
|
using ImmediateOpPtr =
|
|
std::unique_ptr<ImmediateExecutionOperation,
|
|
internal::ImmediateExecutionOperationDeleter>;
|
|
|
|
} // namespace tensorflow
|
|
|
|
#endif // TENSORFLOW_C_EAGER_IMMEDIATE_EXECUTION_OPERATION_H_
|