Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 194 for toves (0.14 sec)

  1. src/cmd/compile/internal/ssa/_gen/MIPSOps.go

    		{name: "CMPGTD", argLength: 2, reg: fp2flags, asm: "CMPGTD", typ: "Flags"}, // flags=true if arg0 > arg1, float64
    
    		// moves
    		{name: "MOVWconst", argLength: 0, reg: gp01, aux: "Int32", asm: "MOVW", typ: "UInt32", rematerializeable: true},    // auxint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/MIPS64Ops.go

    		{name: "CMPGTD", argLength: 2, reg: fp2flags, asm: "CMPGTD", typ: "Flags"}, // flags=true if arg0 > arg1, float64
    
    		// moves
    		{name: "MOVVconst", argLength: 0, reg: gp01, aux: "Int64", asm: "MOVV", typ: "UInt64", rematerializeable: true},    // auxint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 03:36:31 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/deadcode.go

    	return
    }
    
    // deadcode removes dead code from f.
    func deadcode(f *Func) {
    	// deadcode after regalloc is forbidden for now. Regalloc
    	// doesn't quite generate legal SSA which will lead to some
    	// required moves being eliminated. See the comment at the
    	// top of regalloc.go for details.
    	if f.RegAlloc != nil {
    		f.Fatalf("deadcode after regalloc")
    	}
    
    	// Find reachable blocks.
    	reachable := ReachableBlocks(f)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/cluster_tf_ops_pass.cc

        }
    
        func_op->setAttr(kHostAttr, StringAttr::get(context, host));
        func_op.setPublic();
        Block *block = func_op.addEntryBlock();
    
        // Clones and moves the operations into the function's body. And the cloned
        // operation should use the arguments of the newly created func_op as
        // appropriate.
        OpBuilder builder(block, block->end());
        IRMapping mapping;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/pod_test.go

    	}
    
    	createPod("128.0.0.1", "pod")
    	assert.Equal(t, c.pods.getPodKeys("128.0.0.1"), []types.NamespacedName{{Name: "pod", Namespace: "ns"}})
    
    	// Change the pod IP. This can happen if the pod moves to another node, for example.
    	createPod("128.0.0.2", "pod")
    	assert.Equal(t, c.pods.getPodKeys("128.0.0.2"), []types.NamespacedName{{Name: "pod", Namespace: "ns"}})
    	assert.Equal(t, c.pods.getPodKeys("128.0.0.1"), nil)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 18:27:40 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. src/sort/sort.go

    //    The given algorithms are in-place, number of Swap and Assignments
    //    grow as n log n but the algorithm is not stable.
    //  - "Fast Stable In-Place Sorting with O(n) Data Moves" J.I. Munro and
    //    V. Raman in Algorithmica (1996) 16, 115-160:
    //    This algorithm either needs additional 2n bits or works only if there
    //    are enough different elements available to encode some permutations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_program_key.cc

        }
      }
    }
    
    // Move `preprocess_op` after _TPUCompileMlir op if there are no _TPUCompileMlir
    // ops before `preprocess_op`.  This actually creates a new launch op after
    // _TPUCompileMlir and moves `preprocess_op` and its successors that are input
    // to TPUExecute to it.
    LogicalResult MovePreprocessingOpInLaunch(OpBuilder* builder,
                                              func::FuncOp func_op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/transfer/DefaultCacheAwareExternalResourceAccessorTest.groovy

            1 * localCandidates.isNone() >> false
            1 * repository.resource(location, true) >> remoteResource
            1 * remoteResource.metaData >> null
            0 * _._
        }
    
        def "downloads resource and moves it into the cache when it is not cached"() {
            def location = new ExternalResourceName("thing")
            def fileStore = Mock(CacheAwareExternalResourceAccessor.ResourceFileStore)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 17:19:47 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/branchelim.go

    		// if the branch predicts well (or possibly even if it doesn't, if the load will
    		// be an expensive cache miss).
    		// See issue #26306.
    		return false
    	}
    	if arch == "loong64" {
    		// We should not generate conditional moves if neither of the arguments is constant zero,
    		// because it requires three instructions (OR, MASKEQZ, MASKNEZ) and will increase the
    		// register pressure.
    		if !(v.Args[0].isGenericIntConst() && v.Args[0].AuxInt == 0) &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 30 17:46:51 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  10. src/sort/zsortfunc.go

    		} else {
    			wasBalanced = rightLen >= balanceThreshold
    			pdqsort_func(data, mid+1, b, limit)
    			b = mid
    		}
    	}
    }
    
    // partition_func does one quicksort partition.
    // Let p = data[pivot]
    // Moves elements in data[a:b] around, so that data[i]<p and data[j]>=p for i<newpivot and j>newpivot.
    // On return, data[newpivot] = p
    func partition_func(data lessSwap, a, b, pivot int) (newpivot int, alreadyPartitioned bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.5K bytes
    - Viewed (0)
Back to top