Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 324 for numOps (0.16 sec)

  1. pkg/kubelet/cm/cpumanager/cpu_assignment.go

    func takeByTopologyNUMAPacked(topo *topology.CPUTopology, availableCPUs cpuset.CPUSet, numCPUs int) (cpuset.CPUSet, error) {
    	acc := newCPUAccumulator(topo, availableCPUs, numCPUs)
    	if acc.isSatisfied() {
    		return acc.result, nil
    	}
    	if acc.isFailed() {
    		return cpuset.New(), fmt.Errorf("not enough cpus available to satisfy request: requested=%d, available=%d", numCPUs, availableCPUs.Size())
    	}
    
    	// Algorithm: topology-aware best-fit
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:56:21 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais.go

    	// about each's role in the algorithm.
    	numLMS := placeLMS_8_32(text, sa, freq, bucket)
    	if numLMS <= 1 {
    		// 0 or 1 items are already sorted. Do nothing.
    	} else {
    		induceSubL_8_32(text, sa, freq, bucket)
    		induceSubS_8_32(text, sa, freq, bucket)
    		length_8_32(text, sa, numLMS)
    		maxID := assignID_8_32(text, sa, numLMS)
    		if maxID < numLMS {
    			map_32(sa, numLMS)
    			recurse_32(sa, tmp, numLMS, maxID)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. src/runtime/gc_test.go

    	// slack if things are slow.
    	var numGCs uint32
    	const want = 2
    	for i := 0; i < 200 && numGCs < want; i++ {
    		time.Sleep(5 * time.Millisecond)
    
    		// Test that periodic GC actually happened.
    		runtime.ReadMemStats(&ms2)
    		numGCs = ms2.NumGC - ms1.NumGC
    	}
    	*runtime.ForceGCPeriod = orig
    
    	if numGCs < want {
    		t.Fatalf("no periodic GC: got %v GCs, want >= 2", numGCs)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/gotos.go

    func _() {
    	goto L /* ERROR "goto L jumps into block" */
    	{
    	L:
    	}
    }
    
    func _() {
    	goto L /* ERROR "goto L jumps into block" */
    	goto L1 /* ERROR "goto L1 jumps into block" */
    	{
    	L: L1:
    	}
    }
    
    // goto backward into inner block still not okay
    func _() {
    	{
    	L:
    	}
    	goto L /* ERROR "goto L jumps into block" */
    }
    
    func _() {
    	{
    	L: L1:
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  5. src/index/suffixarray/sais2.go

    	// about each's role in the algorithm.
    	numLMS := placeLMS_8_64(text, sa, freq, bucket)
    	if numLMS <= 1 {
    		// 0 or 1 items are already sorted. Do nothing.
    	} else {
    		induceSubL_8_64(text, sa, freq, bucket)
    		induceSubS_8_64(text, sa, freq, bucket)
    		length_8_64(text, sa, numLMS)
    		maxID := assignID_8_64(text, sa, numLMS)
    		if maxID < numLMS {
    			map_64(sa, numLMS)
    			recurse_64(sa, tmp, numLMS, maxID)
    			unmap_8_64(text, sa, numLMS)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. test/goto.go

    	L:
    	} else {
    		goto L // ERROR "goto L jumps into block starting at LINE-3|goto jumps into block"
    	}
    }
    
    func _() {
    	if true {
    		goto L // ERROR "goto L jumps into block starting at LINE+1|goto jumps into block"
    	} else { // GCCGO_ERROR "block starts here"
    	L:
    	}
    }
    
    func _() {
    	if true {
    		goto L // ERROR "goto L jumps into block starting at LINE+1|goto jumps into block"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 02:27:58 UTC 2017
    - 8.4K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/cpumanager/policy_static.go

    	// Allocate CPUs according to the NUMA affinity contained in the hint.
    	cpuset, err := p.allocateCPUs(s, numCPUs, hint.NUMANodeAffinity, p.cpusToReuse[string(pod.UID)])
    	if err != nil {
    		klog.ErrorS(err, "Unable to allocate CPUs", "pod", klog.KObj(pod), "containerName", container.Name, "numCPUs", numCPUs)
    		return err
    	}
    	s.SetCPUSet(string(pod.UID), container.Name, cpuset)
    	p.updateCPUsToReuse(pod, container, cpuset)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  8. ci/official/containers/linux_arm64/jax.requirements.txt

    setuptools
    wheel
    cloudpickle
    colorama>=0.4.4
    matplotlib
    pillow>=9.1.0
    rich
    absl-py
    portpicker
    six
    opt-einsum
    auditwheel
    typing_extensions
    importlib_metadata>=4.6
    numpy==1.26.0;python_version=="3.12"
    numpy==1.23.4;python_version=="3.11"
    numpy==1.22.4;python_version<"3.11"
    scipy==1.11.2;python_version=="3.12"
    scipy==1.9.2;python_version=="3.11"
    scipy==1.7.3;python_version<"3.11"
    ml_dtypes>=0.2.0
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 30 20:02:17 UTC 2024
    - 570 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/tests/add_dump_tensor_op.mlir

    // IntPerLayer-DAG: "tf.DumpTensor"(%[[output1_unquantized]]) <{enabled = true, file_name = "unquantized_tensor_data.pb", func_name = "conv", log_dir_path = "/tmp/dumps/composite_conv2d_with_bias_and_relu6_fn_1", node_name = "Conv2D_1"}> : (tensor<*xf32>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/integration/node_expansion_test.py

        sq2 = gen_composite_ops.my_add_n([t1, t2])
        sq3 = gen_composite_ops.my_add_n([t1, t2, t3])
        self.assertAllEqual(sq1.numpy().reshape(-1), [1, 2, 3, 4])
        self.assertAllEqual(sq2.numpy().reshape(-1), [2, 4, 6, 8])
        self.assertAllEqual(sq3.numpy().reshape(-1), [3, 6, 9, 12])
    
      def testBiasedDense(self):
        t1 = constant_op.constant([[1.0, 2.0], [3.0, 4.0]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 3.9K bytes
    - Viewed (0)
Back to top