Searched refs:rhs_el (Results 1 – 2 of 2) sorted by relevance
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | hlo_evaluator.cc | 66 compare_op = [](OperandT lhs_el, OperandT rhs_el) { in Compare() argument 67 return lhs_el == rhs_el; in Compare() 71 compare_op = [](OperandT lhs_el, OperandT rhs_el) { in Compare() argument 72 return lhs_el != rhs_el; in Compare() 76 compare_op = [](OperandT lhs_el, OperandT rhs_el) { in Compare() argument 77 return lhs_el >= rhs_el; in Compare() 81 compare_op = [](OperandT lhs_el, OperandT rhs_el) { in Compare() argument 82 return lhs_el > rhs_el; in Compare() 86 compare_op = [](OperandT lhs_el, OperandT rhs_el) { in Compare() argument 87 return lhs_el <= rhs_el; in Compare() [all …]
|
D | hlo_evaluator_typed_visitor.h | 671 ElementwiseT rhs_el) { 672 return std::min(lhs_el, rhs_el); 683 ElementwiseT rhs_el) { 684 return ((lhs_el <= rhs_el) || std::isnan(lhs_el)) ? lhs_el : rhs_el; 704 power, [](ElementwiseT lhs_el, ElementwiseT rhs_el) { 705 return lhs_el == ElementwiseT(0) && rhs_el == ElementwiseT(0) 707 : std::pow(lhs_el, rhs_el); 766 ElementwiseT rhs_el) { 767 return std::fmod(lhs_el, rhs_el); 778 ElementwiseT rhs_el) { [all …]
|