Home
last modified time | relevance | path

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

/third_party/mindspore/mindspore/lite/tools/converter/parser/tf/
Dfunctionalize_cond.cc182 CNodePtr FunctionalizeCond::CreateNewIf(const FuncGraphPtr &else_branch, const FuncGraphPtr &then_b… in CreateNewIf() argument
183 MS_CHECK_TRUE_RET(else_branch != nullptr, nullptr); in CreateNewIf()
197 auto else_value_node = NewValueNode(else_branch); in CreateNewIf()
229 auto else_branch = CreateBranchGraph(merge_node_->input(1), else_branch_name, kElseBranch); in Process() local
230 if (else_branch == nullptr) { in Process()
240 auto status = IdentifySubgraphInput(else_branch, else_branch_name); in Process()
254 auto if_node = CreateNewIf(else_branch, then_branch); in Process()
Dfunctionalize_cond.h49 CNodePtr CreateNewIf(const FuncGraphPtr &else_branch, const FuncGraphPtr &then_branch);
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/
Dnir.c642 ppir_branch_node *else_branch, *after_branch; in ppir_emit_if() local
652 else_branch = ppir_node_to_branch(node); in ppir_emit_if()
653 ppir_node_add_src(block->comp, node, &else_branch->src[0], in ppir_emit_if()
655 else_branch->num_src = 1; in ppir_emit_if()
667 else_branch->negate = true; in ppir_emit_if()
668 list_addtail(&else_branch->node.list, &block->node_list); in ppir_emit_if()
677 else_branch->target = ppir_get_block(comp, nblock->successors[0]); in ppir_emit_if()
683 else_branch->target = ppir_get_block(comp, nir_if_first_else_block(if_stmt)); in ppir_emit_if()
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_liverange.cpp190 scope_type == else_branch || in is_conditional()
197 if (scope_type == else_branch) in in_else_scope()
217 scope_type == else_branch) in in_ifelse_scope()
887 cur_scope = scopes->create(cur_scope->parent(), else_branch, in scope_else()
Dsfn_liverange.h57 else_branch, /* Inside else branch */ enumerator
/third_party/mesa3d/src/mesa/state_tracker/
Dst_glsl_to_tgsi_temprename.cpp87 else_branch, /* Inside else branch */ enumerator
397 scope_type == else_branch || in is_conditional()
404 if (scope_type == else_branch) in in_else_scope()
424 scope_type == else_branch) in in_ifelse_scope()
1187 cur_scope = scopes.create(cur_scope->parent(), else_branch, in get_temp_registers_required_live_ranges()
/third_party/mesa3d/src/compiler/glsl/
Dir_builder.cpp635 ir_instruction *else_branch) in if_tree() argument
638 assert(else_branch != NULL); in if_tree()
644 result->else_instructions.push_tail(else_branch); in if_tree()
Dir_builder.h239 ir_instruction *else_branch);