Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/grappler/optimizers/
Dconstant_folding.cc3103 ctx->op_child = ctx->left_child_is_const ? right_child : left_child; in PrepareConstantPushDown()
3112 if (parent.device() != ctx->op_child->device() || in PrepareConstantPushDown()
3118 if (ctx->op_child->input_size() < 2 || in PrepareConstantPushDown()
3119 nodes_to_preserve_.find(ctx->op_child->name()) != in PrepareConstantPushDown()
3121 NumNonControlOutputs(*ctx->op_child, *node_map_) > 1) { in PrepareConstantPushDown()
3135 const auto& child_output = node_map_->GetOutputs(ctx->op_child->name()); in PrepareConstantPushDown()
3141 ctx->left_leaf = node_map_->GetNode(ctx->op_child->input(0)); in PrepareConstantPushDown()
3142 ctx->right_leaf = node_map_->GetNode(ctx->op_child->input(1)); in PrepareConstantPushDown()
3160 &properties.GetInputProperties(ctx->op_child->name()); in PrepareConstantPushDown()
3220 const bool child_is_bias_add = IsBiasAdd(*ctx.op_child); in ConstantPushDownBiasAdd()
[all …]
Dconstant_folding.h161 NodeDef* op_child; member