Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/compiler/xla/client/
Dxla_builder.cc705 const bool should_broadcast_lhs = lhs_rank < rhs_rank; in BinaryOp() local
706 XlaOp from = should_broadcast_lhs ? lhs : rhs; in BinaryOp()
707 const Shape& from_shape = should_broadcast_lhs ? *lhs_shape : *rhs_shape; in BinaryOp()
730 updated_lhs = should_broadcast_lhs ? broadcasted_operand : lhs; in BinaryOp()
731 updated_rhs = !should_broadcast_lhs ? broadcasted_operand : rhs; in BinaryOp()