blob: 27c1838af3f61e41e685ecb3f0b812f8203c339c [file] [log] [blame]
/* Copyright 2015 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_CORE_COMMON_RUNTIME_ENTRY_H_
#define TENSORFLOW_CORE_COMMON_RUNTIME_ENTRY_H_
#include "tensorflow/core/framework/allocator.h"
#include "tensorflow/core/framework/tensor.h"
#include "tensorflow/core/lib/gtl/inlined_vector.h"
#include "tensorflow/core/lib/gtl/manual_constructor.h"
namespace tensorflow {
class mutex;
class Tensor;
// An Entry store a single input value for an individual kernel invocation in
// an executor.
//
// Either a tensor pointer (pass-by-reference) or a tensor (pass-by-value).
struct Entry {
enum class State {
NO_VALUE = 0, // The default state for a newly-created Entry.
HAS_VALUE, // `this->val` is valid.
HAS_CONST_TENSOR, // `this->const_tensor` is valid.
HAS_REF_TENSOR, // `this->ref_tensor` is valid.
};
Entry() : state(State::NO_VALUE) {}
Entry(const Entry& other) : state(other.state), alloc_attr(other.alloc_attr) {
switch (state) {
case State::NO_VALUE:
break;
case State::HAS_VALUE:
val.Init(*other.val);
break;
case State::HAS_CONST_TENSOR:
const_tensor = other.const_tensor;
break;
case State::HAS_REF_TENSOR:
ref_tensor = other.ref_tensor;
break;
}
}
~Entry() {
if (state == State::HAS_VALUE) val.Destroy();
}
Entry& operator=(const Entry& other) {
if (state == State::HAS_VALUE) {
val.Destroy();
}
state = other.state;
alloc_attr = other.alloc_attr;
switch (state) {
case State::NO_VALUE:
break;
case State::HAS_VALUE:
val.Init(*other.val);
break;
case State::HAS_CONST_TENSOR:
const_tensor = other.const_tensor;
break;
case State::HAS_REF_TENSOR:
ref_tensor = other.ref_tensor;
break;
}
return *this;
}
Entry& operator=(Entry&& other) {
if (state == State::HAS_VALUE) {
val.Destroy();
}
state = other.state;
alloc_attr = other.alloc_attr;
switch (state) {
case State::NO_VALUE:
break;
case State::HAS_VALUE:
val.Init(std::move(*other.val));
break;
case State::HAS_CONST_TENSOR:
const_tensor = other.const_tensor;
break;
case State::HAS_REF_TENSOR:
ref_tensor = other.ref_tensor;
break;
}
return *this;
}
// Clears the <val> field, and sets this entry to the `NO_VALUE` state.
void ClearVal() {
if (state == State::HAS_VALUE) {
val.Destroy();
}
state = State::NO_VALUE;
}
union {
// A tensor value. Valid iff `state_ == HAS_VALUE`.
ManualConstructor<Tensor> val;
// A pointer to a constant tensor value. Valid iff `state_ ==
// HAS_CONST_TENSOR`.
const Tensor* const_tensor;
// A tensor reference and associated mutex. Valid iff `state_ ==
// HAS_REF_TENSOR`.
struct {
Tensor* tensor;
mutex* mu;
} ref_tensor;
};
// The current state of this entry, indicating which member of the above
// union is active.
State state;
// The attributes of the allocator that creates the tensor.
AllocatorAttributes alloc_attr;
};
// TODO(b/152925936): Re-evaluate this constant with current usage patterns.
typedef gtl::InlinedVector<Entry, 4> EntryVector;
} // namespace tensorflow
#endif // TENSORFLOW_CORE_COMMON_RUNTIME_ENTRY_H_