HomeSort by relevance Sort by last modified time
    Searched defs:on_false (Results 1 - 5 of 5) sorted by null

  /external/tensorflow/tensorflow/compiler/xla/tests/
select_test.cc 41 auto on_false = builder.ConstantR0<float>(42.0f); local
42 auto result = builder.Select(pred, on_true, on_false);
51 auto on_false = builder.ConstantR0<int32>(42); local
52 auto result = builder.Select(pred, on_true, on_false);
61 auto on_false = builder.ConstantR0<float>(42.0f); local
62 auto result = builder.Select(pred, on_true, on_false);
71 auto on_false = builder.ConstantR1<float>({}); local
72 auto select = builder.Select(pred, on_true, on_false);
81 auto on_false = builder.ConstantR1<float>({10.0f, 5.0f, 1.0f, 10.0f, -6.0f}); local
82 auto select = builder.Select(pred, on_true, on_false);
96 auto on_false = builder.ConstantR1<float>({}); local
110 auto on_false = builder.ConstantR1<float>({10.0f, 5.0f, 1.0f, 10.0f, -6.0f}); local
124 auto on_false = builder.ConstantR1<float>({10.0f, 5.0f, 1.0f, 10.0f, -6.0f}); local
201 auto on_false = local
218 auto on_false = local
231 auto on_false = builder.ConstantR1<float>({}); local
242 auto on_false = builder.ConstantR1<float>({10.0f, 5.0f}); local
252 auto on_false = builder.ConstantR1<float>({10.0f, 5.0f}); local
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
tuple_points_to_analysis.cc 385 // on_false buffer into this new buffer. Which side is chosen cannot be
387 // of these on_true and on_false operands.
390 // add in elements of the on_false points-to set (tuple sources).
392 auto on_false = select->operand(2); local
394 const PointsToSet& false_points_to_set = *PerInst(on_false)->points_to_set;
hlo_evaluator_test.cc 160 auto on_false = Literal::CreateR2<float>({{0.f, 5.f}, {0.f, 4.f}}); local
168 b.AddInstruction(HloInstruction::CreateConstant(std::move(on_false)));
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
ir_emitter.cc 316 auto on_false = select->operand(2); local
323 GetEmittedValueFor(on_false), &ir_builder_, module_);
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
ir_emitter.cc 424 auto on_false = select->operand(2); local
431 GetBasePointer(*on_false), &ir_builder_, module_);
    [all...]

Completed in 753 milliseconds