Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/compiler/aot/
Dtest_graph_tfadd.pbtxt34 name : "y_reshape"
46 input : "y_reshape"
Dtest_graph_tfadd.config.pbtxt9 id { node_name: "y_reshape" }
/external/tensorflow/tensorflow/core/kernels/
Dsubstr_op.cc146 auto pos_shaped = pos_tensor.shaped<T, 1>(bcast.y_reshape()); in Compute()
147 auto len_shaped = len_tensor.shaped<T, 1>(bcast.y_reshape()); in Compute()
209 auto pos_shaped = pos_tensor.shaped<T, 2>(bcast.y_reshape()); in Compute()
210 auto len_shaped = len_tensor.shaped<T, 2>(bcast.y_reshape()); in Compute()
Dbroadcast_to_op.h75 const int ndims = bcast.y_reshape().size(); in operator()
Dcwise_ops_common.h128 in1.template shaped<Tin, 2>(bcast->y_reshape()), in Compute()
135 in1.template shaped<Tin, 3>(bcast->y_reshape()), in Compute()
142 in1.template shaped<Tin, 4>(bcast->y_reshape()), in Compute()
149 in1.template shaped<Tin, 5>(bcast->y_reshape()), in Compute()
Dsparse_dense_binary_op_shared.cc125 dense_t->shaped<T, NDIM>(b.y_reshape()) \ in Compute()
Dxent_op.cc93 labels_in.template shaped<T, 2>(bcast.y_reshape()), in Compute()
Dbetainc_op.cc101 output->shaped<T, NDIM>(a_shaper.y_reshape())); \ in Compute()
Dquantized_mul_op.cc358 << TensorShape(bcast.y_reshape()).DebugString(); in Compute()
Dquantized_add_op.cc550 << TensorShape(bcast.y_reshape()).DebugString(); in Compute()
/external/tensorflow/tensorflow/core/util/
Dbcast.h97 const Vec& y_reshape() const { return y_reshape_; } in y_reshape() function
Dbcast_test.cc35 strings::StrAppend(&ret, "[", str_util::Join(b.y_reshape(), ","), "]"); in BCast()