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.cc642 const bool should_broadcast_lhs = lhs_rank < rhs_rank; in BinaryOp() local
643 XlaOp from = should_broadcast_lhs ? lhs : rhs; in BinaryOp()
644 const Shape& from_shape = should_broadcast_lhs ? *lhs_shape : *rhs_shape; in BinaryOp()
664 updated_lhs = should_broadcast_lhs ? broadcasted_operand : lhs; in BinaryOp()
665 updated_rhs = !should_broadcast_lhs ? broadcasted_operand : rhs; in BinaryOp()