Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for GetUnit (0.11 sec)

  1. src/cmd/compile/internal/walk/complit.go

    		body = typecheck.Stmt(body)
    		body = orderStmtInPlace(body, map[string][]*ir.Name{})
    
    		loop := ir.NewForStmt(base.Pos, nil, cond, incr, nil, false)
    		loop.Body = []ir.Node{body}
    		loop.SetInit([]ir.Node{zero})
    
    		appendWalkStmt(init, loop)
    		return
    	}
    	// For a small number of entries, just add them directly.
    
    	// Build list of var[c] = expr.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:03:54 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

          CollectExternValues(regional.getRegions());
    
      if (!extern_values.empty()) return failure();
    
      init_name = GetName(regional, "_init");
      init_name = ExtractSingleBlockRegion(symbol_table, regional.getInit(),
                                           init_name, extern_values, worklist,
                                           /*extern_values_passthrough=*/false,
                                           /*only_one_return_value=*/false,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      int n;
      if (point.isParent()) {
        // The op itself branches to `init` first.
        regions.push_back(
            RegionSuccessor(&getInit(), getInit().front().getArguments()));
      } else if (point.getRegionOrNull() == &getInit()) {
        // `init` branches to `next`, passing along the arguments given to `init`'s
        // yield. Said arguments precede the "other args".
        n = getInitFuncOtherArgs().size();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top