Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for comp2 (0.05 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      %comp1 = "tf.Complex"(%con11, %con12) : (tensor<2xf32>, tensor<2xf32>) -> tensor<2xcomplex<f32>>
      %comp2 = "tf.Complex"(%con21, %con22) : (tensor<2xf32>, tensor<2xf32>) -> tensor<2xcomplex<f32>>
      %comp3 = "tf.Complex"(%con31, %con32) : (tensor<2xf32>, tensor<2xf32>) -> tensor<2xcomplex<f32>>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Ordering.java

       * provided to this method.
       *
       * <p>The returned ordering is equivalent to that produced using {@code
       * Ordering.from(comp1).compound(comp2).compound(comp3) . . .}.
       *
       * <p>The returned object is serializable if each of the {@code comparators} is serializable.
       *
       * <p><b>Warning:</b> Supplying an argument with undefined iteration order, such as a {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Ordering.java

       * provided to this method.
       *
       * <p>The returned ordering is equivalent to that produced using {@code
       * Ordering.from(comp1).compound(comp2).compound(comp3) . . .}.
       *
       * <p>The returned object is serializable if each of the {@code comparators} is serializable.
       *
       * <p><b>Warning:</b> Supplying an argument with undefined iteration order, such as a {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  4. src/image/jpeg/scan.go

    	// The h0, mxx, by and bx variables have the same meaning as in the
    	// processSOS method.
    	h0 := d.comp[0].h
    	mxx := (d.width + 8*h0 - 1) / (8 * h0)
    	for i := 0; i < d.nComp; i++ {
    		if d.progCoeffs[i] == nil {
    			continue
    		}
    		v := 8 * d.comp[0].v / d.comp[i].v
    		h := 8 * d.comp[0].h / d.comp[i].h
    		stride := mxx * d.comp[i].h
    		for by := 0; by*v < d.height; by++ {
    			for bx := 0; bx*h < d.width; bx++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. operator/pkg/util/progress/progress.go

    func (p *Log) createStatus(maxWidth int) string {
    	comps := make([]string, 0, len(p.components))
    	wait := make([]string, 0, len(p.components))
    	for c, l := range p.components {
    		comps = append(comps, name.UserFacingComponentName(name.ComponentName(c)))
    		wait = append(wait, l.waitingResources()...)
    	}
    	sort.Strings(comps)
    	sort.Strings(wait)
    	msg := fmt.Sprintf(`Processing resources for %s.`, strings.Join(comps, ", "))
    	if len(wait) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/apiclient/wait.go

    	components := getControlPlaneComponents(cfg)
    
    	var errs []error
    	errChan := make(chan error, len(components))
    
    	for _, comp := range components {
    		fmt.Printf("[control-plane-check] Checking %s at %s\n", comp.name, comp.url)
    
    		go func(comp controlPlaneComponent) {
    			tr := &http.Transport{
    				TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
    			}
    			client := &http.Client{Transport: tr}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskCreationBuildOperationIntegrationTest.groovy

                    dependencies { implementation(project(":sub")) }
                """
            }
            includedBuild('comp').multiProjectBuild('comp', ['sub'], createTasks).settingsFile
            buildFile << """
                tasks.named('build').configure { it.dependsOn gradle.includedBuild('comp').task(':build') }
            """
    
            when:
            run 'build'
    
            then:
            verifyTaskIds()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. src/go/types/typeset.go

    	// the result must only include comparable types.
    	comp := xcomp || ycomp
    	if comp && !terms.isAll() {
    		// only keep comparable terms
    		i := 0
    		for _, t := range terms {
    			assert(t.typ != nil)
    			if comparable(t.typ, false /* strictly comparable */, nil, nil) {
    				terms[i] = t
    				i++
    			}
    		}
    		terms = terms[:i]
    		if !terms.isAll() {
    			comp = false
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/typeset.go

    	// the result must only include comparable types.
    	comp := xcomp || ycomp
    	if comp && !terms.isAll() {
    		// only keep comparable terms
    		i := 0
    		for _, t := range terms {
    			assert(t.typ != nil)
    			if comparable(t.typ, false /* strictly comparable */, nil, nil) {
    				terms[i] = t
    				i++
    			}
    		}
    		terms = terms[:i]
    		if !terms.isAll() {
    			comp = false
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ResolutionResultGraphBuilderSpec.groovy

      x:U:1 -> x:U:1 - Could not resolve x:U:1.
    """
        }
    
        private void node(String module, ComponentSelectionReason reason = ComponentSelectionReasons.requested()) {
            DummyModuleVersionSelection moduleVersion = comp(module, reason)
            builder.startVisitComponent(moduleVersion.resultId, moduleVersion.selectionReason, "repo")
            builder.visitComponentDetails(moduleVersion.componentId, moduleVersion.moduleVersion)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top