Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 99 for dominate (0.14 sec)

  1. src/cmd/compile/internal/ssa/sparsetree.go

    }
    
    // domorder returns a value for dominator-oriented sorting.
    // Block domination does not provide a total ordering,
    // but domorder two has useful properties.
    //  1. If domorder(x) > domorder(y) then x does not dominate y.
    //  2. If domorder(x) < domorder(y) and domorder(y) < domorder(z) and x does not dominate y,
    //     then x does not dominate z.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/cluster_util.h

    // Reorder all users of the given op's results to after the op.
    //
    // Since launch ops are inserted after the last op in the region, the region is
    // guaranteed to dominate all live-in values. On the other hand, it is still
    // possible that live-out values don't dominate the region. For example:
    //
    // ```
    // %0 = "tf.OpA"()
    // %1 = "tf.OpB"(%0)
    // %2 = "tf.OpC"(%0)
    // ```
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 21 22:33:23 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. cluster/addons/dns-horizontal-autoscaler/dns-horizontal-autoscaler.yaml

              - --target={{.Target}}
              # When cluster is using large nodes(with more cores), "coresPerReplica" should dominate.
              # If using small nodes, "nodesPerReplica" should dominate.
              - --default-params={"linear":{"coresPerReplica":256,"nodesPerReplica":16,"preventSinglePointFailure":true,"includeUnschedulableNodes":true}}
              - --logtostderr=true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/zcse.go

    				key := vkey{v.Op, keyFor(v), v.Aux, v.Type}
    				if vals[key] == nil {
    					vals[key] = v
    					if b != f.Entry {
    						// Move v to the entry block so it will dominate every block
    						// where we might use it. This prevents the need for any dominator
    						// calculations in this pass.
    						v.Block = f.Entry
    						f.Entry.Values = append(f.Entry.Values, v)
    						last := len(b.Values) - 1
    						b.Values[i] = b.Values[last]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 08 01:46:31 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/likelyadjust.go

    		}
    
    		var innermost *loop // innermost header reachable from this block
    
    		// IF any successor s of b is in a loop headed by h
    		// AND h dominates b
    		// THEN b is in the loop headed by h.
    		//
    		// Choose the first/innermost such h.
    		//
    		// IF s itself dominates b, then s is a loop header;
    		// and there may be more than one such s.
    		// Since there's at most 2 successors, the inner/outer ordering
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/check.go

    						y = b.Preds[i].b
    					}
    					if !domCheck(f, sdom, x, y) {
    						f.Fatalf("arg %d of value %s does not dominate, arg=%s", i, v.LongString(), arg.LongString())
    					}
    				}
    			}
    			for _, c := range b.ControlValues() {
    				if !domCheck(f, sdom, c.Block, b) {
    					f.Fatalf("control value %s for %s doesn't dominate", c, b)
    				}
    			}
    		}
    	}
    
    	// Check loop construction
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/phiopt.go

    	// 2. find the common dominator(b0) of the predecessors(pb0, pb1) of block b, and the
    	//    dominator(b0) is a If block.
    	//    Special case: one of the predecessors(pb0 or pb1) is the dominator(b0).
    	// 3. the successors(sb0, sb1) of the dominator need to dominate the predecessors(pb0, pb1)
    	//    of block b respectively.
    	// 4. replace this boolean Phi based on dominator block.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionConstraintsFeatureInteractionIntegrationTest.groovy

                            byConstraint()
                            notRequested()
                        }
                    }
                }
            }
        }
    
    
        def "dependency resolve rules dominate over strict version constraints"() {
            given:
            repository {
                'org:foo:0.11'()
                'org:bar:1.0' {
                    dependsOn 'org:foo:2.0'
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 15K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/loopreschedchecks.go

    // These new phis can only occur at the dominance frontier of h; block s is in the dominance
    // frontier of h if h does not strictly dominate s and if s is a successor of a block b where
    // either b = h or h strictly dominates b.
    // These newly created phis are themselves new definitions that may require addition of their
    // own trivial phi functions in their own dominance frontier, and this is handled recursively.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:10 UTC 2023
    - 16K bytes
    - Viewed (0)
  10. samples/helloworld/src/requirements.txt

        # via requests
    click==8.1.7 \
        --hash=sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28 \
        --hash=sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de
        # via flask
    dominate==2.9.1 \
        --hash=sha256:558284687d9b8aae1904e3d6051ad132dd4a8c0cf551b37ea4e7e42a31d19dc4 \
        --hash=sha256:cb7b6b79d33b15ae0a6e87856b984879927c7c2ebb29522df4c75b28ffd9b989
        # via flask-bootstrap
    flask==3.0.3 \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 24 19:35:04 UTC 2024
    - 35K bytes
    - Viewed (0)
Back to top