Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/kernels/
Dlist_kernels.cc464 std::unique_ptr<Tensor> tl_alias = c->forward_input( in Compute() local
473 bool ok_to_alias = tl_alias != nullptr; in Compute()
474 if (tl_alias && tl_alias->dtype() == DT_VARIANT && in Compute()
475 tl_alias->NumElements() > 0) { in Compute()
476 auto tl_a_t = tl_alias->flat<Variant>(); in Compute()
477 for (int64 i = 0; i < tl_alias->NumElements(); ++i) { in Compute()
485 c->set_output(0, *tl_alias); in Compute()
486 output = tl_alias.get(); in Compute()