Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/grappler/optimizers/
Dconstant_folding.cc2837 const bool left_child_is_constant = IsReallyConstant(*left_child); in ConstantPushDown() local
2839 if (!left_child_is_constant && !right_child_is_constant) { in ConstantPushDown()
2846 NodeDef* op_child_node = left_child_is_constant ? right_child : left_child; in ConstantPushDown()
2848 left_child_is_constant ? left_child : right_child; in ConstantPushDown()
2867 const int parent_const_input = left_child_is_constant ? 0 : 1; in ConstantPushDown()
2910 const bool left_child_is_constant = IsReallyConstant(*mul_left_child); in MulConvPushDown() local
2912 if (!left_child_is_constant && !right_child_is_constant) { in MulConvPushDown()
2916 left_child_is_constant ? mul_right_child : mul_left_child; in MulConvPushDown()
2964 left_child_is_constant ? mul_left_child : mul_right_child; in MulConvPushDown()
3001 if (left_child_is_constant) { in MulConvPushDown()