Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getElseBranch (0.1 sec)

  1. tensorflow/compiler/mlir/tensorflow/analysis/resource_value_typed_analyzer.cc

          PropagatePotentiallyWrittenUpFromCallee(if_op.getThenBranch(),
                                                  if_op.getODSOperands(1));
          PropagatePotentiallyWrittenUpFromCallee(if_op.getElseBranch(),
                                                  if_op.getODSOperands(1));
          return;
        }
        if (auto while_op = dyn_cast<TF::WhileOp>(op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/convert_tf_control_flow_to_scf.cc

            rewriter.create<scf::IfOp>(loc, tf_if_region_return_type,
                                       scf_if_condition, /*withElseRegion=*/true);
    
        Region& then_region = op.getThenBranch();
        Region& else_region = op.getElseBranch();
    
        // Create the `then` and `else` regions of the `scf.if` op.
        createScfThenOrElse(then_region, scf_if_op.getThenRegion(),
                            tf_if_region_return_type, rewriter);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 03 12:35:38 UTC 2022
    - 9.4K bytes
    - Viewed (0)
Back to top