Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/kernels/
Dsubstr_op.cc166 pos_shaped.broadcast(BCast::ToIndexArray<1>(bcast.y_bcast())); in Compute()
176 len_shaped.broadcast(BCast::ToIndexArray<1>(bcast.y_bcast())); in Compute()
229 pos_shaped.broadcast(BCast::ToIndexArray<2>(bcast.y_bcast())); in Compute()
239 len_shaped.broadcast(BCast::ToIndexArray<2>(bcast.y_bcast())); in Compute()
Dcwise_ops_common.h129 BCast::ToIndexArray<2>(bcast->y_bcast()), error_ptr); in Compute()
136 BCast::ToIndexArray<3>(bcast->y_bcast()), error_ptr); in Compute()
143 BCast::ToIndexArray<4>(bcast->y_bcast()), error_ptr); in Compute()
150 BCast::ToIndexArray<5>(bcast->y_bcast()), error_ptr); in Compute()
Dsparse_dense_binary_op_shared.cc126 .broadcast(BCast::ToIndexArray<NDIM>(b.y_bcast())); \ in Compute()
Dxent_op.cc91 BCast::ToIndexArray<2>(bcast.y_bcast()), in Compute()
Dquantized_mul_op.cc362 << TensorShape(bcast.y_bcast()).DebugString(); in Compute()
Dquantized_add_op.cc554 << TensorShape(bcast.y_bcast()).DebugString(); in Compute()
/external/tensorflow/tensorflow/core/util/
Dbcast.h98 const Vec& y_bcast() const { return y_bcast_; } in y_bcast() function
Dbcast_test.cc36 strings::StrAppend(&ret, "[", str_util::Join(b.y_bcast(), ","), "]"); in BCast()
/external/tensorflow/tensorflow/compiler/xla/tests/
Dconcat_test.cc624 auto y_bcast = Broadcast(y, {1, 5, 7}); in XLA_TEST_F() local
626 auto concat = ConcatInDim(&builder, {y_bcast, x}, /*dimension=*/0); in XLA_TEST_F()