Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/compiler/xla/tests/
Dconditional_test.cc346 auto true_operand = Parameter(&inner_builder, 1, r0f32_, "param1"); in XLA_TEST_F() local
348 Conditional(pred_cond, true_operand, CreateR0CeilComputation(), false_operand, in XLA_TEST_F()
638 auto true_operand = GetTupleElement(param0, 1); in XLA_TEST_F() local
640 Conditional(pred_cond, true_operand, CreateR0CeilComputation(), in XLA_TEST_F()
668 auto true_operand = GetTupleElement(param0, 1); in XLA_TEST_F() local
670 Conditional(pred_cond, true_operand, CreateR0CeilComputation(), in XLA_TEST_F()
/external/tensorflow/tensorflow/compiler/xla/python/
Dxla_client.py1337 def Conditional(self, pred, true_operand, true_computation, false_operand, argument
1349 return ops.Conditional(pred, true_operand, true_computation.computation,
Dxla_client_test.py1902 true_operand = c.ConstantF32Scalar(3.)
1906 c.Conditional(pred, true_operand, true_computation, false_operand,
1913 true_operand = c.ConstantF32Scalar(3.)
1917 c.Conditional(pred, true_operand, true_computation, false_operand,
/external/tensorflow/tensorflow/compiler/xla/client/
Dxla_builder.h571 XlaOp Conditional(XlaOp predicate, XlaOp true_operand,
990 friend XlaOp Conditional(XlaOp predicate, XlaOp true_operand,
1864 XlaOp Conditional(XlaOp predicate, XlaOp true_operand,
Dxla_builder.cc1832 XlaOp XlaBuilder::Conditional(XlaOp predicate, XlaOp true_operand, in Conditional() argument
1848 {true_operand, false_operand}); in Conditional()
3468 XlaOp Conditional(const XlaOp predicate, const XlaOp true_operand, in Conditional() argument
3472 return predicate.builder()->Conditional(predicate, true_operand, in Conditional()
/external/tensorflow/tensorflow/compiler/xla/g3doc/
Doperation_semantics.md614 <b> `Conditional(pred, true_operand, true_computation, false_operand,
620 `true_operand` | `XlaOp` | Argument of type $$ T_0 $$
629 be invoked with `true_operand` which must be of the same type. The