Home
last modified time | relevance | path

Searched refs:tensor_id_ (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/core/kernels/
Ddebug_ops.h519 OP_REQUIRES_OK(context, context->GetAttr("tensor_id", &tensor_id_));
528 Tout tensor_id = static_cast<Tout>(tensor_id_);
534 context, tensor_id_ <= kMaxTensorId,
539 "). Given tensor_id:", tensor_id_));
684 int64 tensor_id_;
704 OP_REQUIRES_OK(context, context->GetAttr("tensor_id", &tensor_id_));
709 Tout tensor_id = static_cast<Tout>(tensor_id_);
719 context, tensor_id_ <= kMaxTensorId,
724 "). Given tensor_id:", tensor_id_),
883 int64 tensor_id_;
/external/tensorflow/tensorflow/compiler/jit/
Ddeadness_analysis.cc285 tensor_id_(std::move(tensor_id)), in SymbolPredicate()
289 return must_be_true() ? absl::StrCat("*", tensor_id_.ToString()) in ToString()
290 : tensor_id_.ToString(); in ToString()
301 TensorId tensor_id() const { return tensor_id_; } in tensor_id()
305 TensorId tensor_id_; member in tensorflow::__anonaeebdbfa0111::SymbolPredicate
319 tensor_id_(std::move(tensor_id)), in IntSymbolPredicate()
324 ? absl::StrCat(tensor_id_.ToString(), "=", *must_have_value_) in ToString()
325 : tensor_id_.ToString(); in ToString()
338 TensorId tensor_id() const { return tensor_id_; } in tensor_id()
344 TensorId tensor_id_; member in tensorflow::__anonaeebdbfa0111::IntSymbolPredicate
/external/tensorflow/tensorflow/core/framework/
Dsession_state.h50 int64 tensor_id_ = 0; variable
/external/tensorflow/tensorflow/core/common_runtime/
Dsession_state.cc57 return tensor_id_++; in GetNewId()