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.cc512 const bool should_broadcast_lhs = lhs_rank < rhs_rank; in BinaryOp() local
513 XlaOp from = should_broadcast_lhs ? lhs : rhs; in BinaryOp()
514 const Shape& from_shape = should_broadcast_lhs ? lhs_shape : rhs_shape; in BinaryOp()
534 updated_lhs = should_broadcast_lhs ? broadcasted_operand : lhs; in BinaryOp()
535 updated_rhs = !should_broadcast_lhs ? broadcasted_operand : rhs; in BinaryOp()