Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for outer_loop (0.98 sec)

  1. tensorflow/compiler/jit/deadness_analysis_test.cc

                  "{#true,&,*iv_outer/cond_1:0}<outer_loop>),&,*iv_inner/"
                  "cond_1:0}<inner_loop;outer_loop>");
        EXPECT_EQ(predicate_map[ControlOutputFor(add0)],
                  "({(*iv_outer/cond:0 & "
                  "{#true,&,*iv_outer/cond:0}<outer_loop>),&,*iv_inner/"
                  "cond:0}<inner_loop;outer_loop> & {(*iv_outer/cond_1:0 & "
                  "{#true,&,*iv_outer/cond_1:0}<outer_loop>),&,*iv_inner/"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/pin_ops_with_side_effects.cc

        builder.create<YieldOp>(loc, inner_op->getResults());
        outer_op.getBody().takeBody(region);
        // Careful: We can't use outer_op.getResults(), because that also includes
        // the control token.
        op->replaceAllUsesWith(outer_op.getOutputs());
        op->erase();
        // Control token is last result of outer_op.
        control_tokens.assign(1, outer_op.getResults().back());
      }
    }
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. cmd/iam-etcd-store.go

    						// Upon an error on watch channel
    						// re-init the watch channel.
    						goto outerLoop
    					}
    					if err := watchResp.Err(); err != nil {
    						iamLogIf(ctx, err)
    						// log and retry.
    						time.Sleep(1 * time.Second)
    						// Upon an error on watch channel
    						// re-init the watch channel.
    						goto outerLoop
    					}
    					for _, event := range watchResp.Events {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/generic/webhook.go

    		attrWithOverride := &attrWithResourceOverride{Attributes: attr}
    		equivalents := o.GetEquivalentResourceMapper().EquivalentResourcesFor(attr.GetResource(), attr.GetSubresource())
    		// honor earlier rules first
    	OuterLoop:
    		for _, r := range h.GetRules() {
    			// see if the rule matches any of the equivalent resources
    			for _, equivalent := range equivalents {
    				if equivalent == attr.GetResource() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. internal/s3select/select.go

    			// FIXME: log this error.
    			err = nil
    			bufPool.Put(buf)
    			return false
    		}
    		outputQueue = outputQueue[:0]
    		return true
    	}
    
    	var rec sql.Record
    OuterLoop:
    	for {
    		if s3Select.statement.LimitReached() {
    			if !sendRecord() {
    				break
    			}
    			if err = writer.Finish(s3Select.getProgress()); err != nil {
    				// FIXME: log this error.
    				err = nil
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 21K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ImmutableSet.java

          // When knownRunEnd exceeds hashTable.length, it "wraps", detecting runs around the end
          // of the table.
          int knownRunStart = 0;
          int knownRunEnd = 0;
    
          outerLoop:
          while (knownRunStart < hashTable.length) {
            if (knownRunStart == knownRunEnd && hashTable[knownRunStart] == null) {
              if (hashTable[(knownRunStart + maxRunBeforeFallback - 1) & mask] == null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/prove.go

    		//		if ind < end
    		//		then goto enter_loop
    		//		else goto exit_loop
    		//
    		//	enter_loop:
    		//		do something without using ind nor nxt
    		//		nxt = inc + ind
    		//		goto loop
    		//
    		//	exit_loop:
    		//
    		// is rewritten to:
    		//
    		//	loop:
    		//		ind = (Phi end nxt)
    		//		if (Const [x]) < ind
    		//		then goto enter_loop
    		//		else goto exit_loop
    		//
    		//	enter_loop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          control_nodes.push_back(&item.value());
          control_nodes_at.try_emplace(&item.value(), item.index());
        }
      }
    
      for (auto outer_op : control_nodes) {
        auto control_node_op = dyn_cast<mlir::TFL::ControlNodeOp>(outer_op);
        auto* inner_op = &control_node_op.getBody().front().front();
        auto control_token = control_node_op.getControl();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    // param controls the maximum number of results returned; if "limit"
    // is -1, then all undefs are returned.
    func (l *Loader) UndefinedRelocTargets(limit int) ([]Sym, []Sym) {
    	result, fromr := []Sym{}, []Sym{}
    outerloop:
    	for si := Sym(1); si < Sym(len(l.objSyms)); si++ {
    		relocs := l.Relocs(si)
    		for ri := 0; ri < relocs.Count(); ri++ {
    			r := relocs.At(ri)
    			rs := r.Sym()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  10. doc/go1.17_spec.html

    "for", "switch", or "select" statement,
    and that is the one whose execution terminates.
    </p>
    
    <pre>
    OuterLoop:
    	for i = 0; i &lt; n; i++ {
    		for j = 0; j &lt; m; j++ {
    			switch a[i][j] {
    			case nil:
    				state = Error
    				break OuterLoop
    			case item:
    				state = Found
    				break OuterLoop
    			}
    		}
    	}
    </pre>
    
    <h3 id="Continue_statements">Continue statements</h3>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top