Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/kernels/
Dbetainc_op.cc83 auto merged_shape_vec = BCast::FromShape(merged_shape); in Compute()
84 BCast a_shaper(BCast::FromShape(a_shape), merged_shape_vec); in Compute()
85 BCast b_shaper(BCast::FromShape(b_shape), merged_shape_vec); in Compute()
86 BCast x_shaper(BCast::FromShape(x_shape), merged_shape_vec); in Compute()
Dcwise_ops_common.cc58 bcast(BCast::FromShape(in0.shape()), BCast::FromShape(in1.shape())) { in BinaryOpState()
Dbroadcast_to_op.cc77 BCast bcast(BCast::FromShape(input_shape), BCast::FromShape(output_shape), in Compute()
Dsparse_dense_binary_op_shared.cc84 const auto lhs_dims = BCast::FromShape(TensorShape(shape_vec)); in Compute()
85 const auto rhs_dims = BCast::FromShape(dense_t->shape()); in Compute()
Dxent_op.cc49 BCast bcast(BCast::FromShape(logits_in.shape()), in Compute()
50 BCast::FromShape(labels_in.shape())); in Compute()
Dsubstr_op.cc131 BCast bcast(BCast::FromShape(input_shape), BCast::FromShape(pos_shape)); in Compute()
Dquantized_mul_op.cc292 BCast bcast(BCast::FromShape(x.shape()), BCast::FromShape(y.shape())); in Compute()
Dquantized_add_op.cc465 BCast bcast(BCast::FromShape(x.shape()), BCast::FromShape(y.shape())); in Compute()
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dcwise_ops.cc43 BCast bcast(BCast::FromShape(lhs_shape), BCast::FromShape(rhs_shape), in Compile()
/external/tensorflow/tensorflow/core/util/
Dbcast.h105 static Vec FromShape(const TensorShape& shape);
Dbcast.cc158 BCast::Vec BCast::FromShape(const TensorShape& shape) { in FromShape() function in tensorflow::BCast