Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,108 for Amount (0.19 sec)

  1. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass.h

    #define TENSORFLOW_COMPILER_JIT_INCREASE_DYNAMISM_FOR_AUTO_JIT_PASS_H_
    
    #include "tensorflow/core/common_runtime/optimization_registry.h"
    
    namespace tensorflow {
    
    // Increases the amount of "dynamism" representable by XLA clusters by rewriting
    // the TensorFlow graph.  This pass does the following rewrites:
    //
    // Slice
    // -----
    //
    //   Slice(op, begin, size <must be constant>) =>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 26 21:01:34 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge.go

    // dramatically over the next GC cycle. Overestimating the amount of
    // fragmentation simply results in higher memory use, which will be accounted
    // for by the next pacing up date. Underestimating the fragmentation however
    // could lead to performance degradation. Handling this case is not within the
    // scope of the scavenger. Situations where the amount of fragmentation balloons
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_compilation_profiler.cc

      const int64_t kCompileThreshold = 10;
      const int64_t kMinExecutionsPerCompile = 50;
    
      // This heuristic is trying to capture the following property: have we sunk a
      // certain minimum amount of compile time into the cluster that didn't quite
      // "pay off"?
      return compile_count > kCompileThreshold &&
             execution_count < kMinExecutionsPerCompile * compile_count;
    }
    
    void RegisterExecutionForCluster(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/javadoc/Javadoc.java

        }
    
        /**
         * Returns the amount of memory allocated to this task.
         */
        @Internal
        @Nullable
        public String getMaxMemory() {
            return maxMemory;
        }
    
        /**
         * Sets the amount of memory allocated to this task.
         *
         * @param maxMemory The amount of memory
         */
        public void setMaxMemory(String maxMemory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/validation/validator.go

    			conn.Close()
    			continue
    		}
    
    		// echo original port for debugging.
    		// Since the write amount is small it should fit in sock buffer and never blocks.
    		echo(conn, []byte(strconv.Itoa(int(port))))
    		// Handle connections
    		// Since the write amount is small it should fit in sock buffer and never blocks.
    		if port != config.ServerOriginalPort {
    			// This could be probe request from no where
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 01 04:37:36 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/types.go

    	CgroupName(name string) CgroupName
    	// Pids scans through all subsystems to find pids associated with specified cgroup.
    	Pids(name CgroupName) []int
    	// ReduceCPULimits reduces the CPU CFS values to the minimum amount of shares.
    	ReduceCPULimits(cgroupName CgroupName) error
    	// MemoryUsage returns current memory usage of the specified cgroup, as read from the cgroupfs.
    	MemoryUsage(name CgroupName) (int64, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. tests/fuzz/pilot_security_fuzzer.go

    	return 1
    }
    
    func getKandV(data []byte) (string, string, error) {
    	if len(data) < 10 {
    		return "", "", fmt.Errorf("not enough bytes")
    	}
    	if len(data)%2 != 0 {
    		return "", "", fmt.Errorf("not correct amount of bytes")
    	}
    	k := string(data[:len(data)/2])
    	v := string(data[(len(data)/2)+1:])
    	return k, v, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. test/fixedbugs/issue16249.go

    //go:noinline
    func B(n int64) (res int64) {
    	if n <= 1 { // Prefer to leave a 1 on the stack.
    		return n
    	}
    	return 1 + B(n-1)
    }
    
    func main() {
    	x, e := A(0, 0)
    	for j := 0; j < 4; j++ { // j controls amount of B's stack dribble
    		for i := 0; i < 1000; i++ { // try more and more recursion until stack growth occurs in newobject in prologue
    			x, e = A(int64(i), int64(j))
    		}
    	}
    	_, _ = x, e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 02 00:40:40 UTC 2016
    - 1.3K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/heap/heap_test.go

    	if *metricRecorder != 4 {
    		t.Errorf("expected count to be 4 but got %d", *metricRecorder)
    	}
    	if err := h.Delete(mkHeapObj("bar", 1)); err != nil {
    		t.Fatal(err)
    	}
    	if *metricRecorder != 3 {
    		t.Errorf("expected count to be 3 but got %d", *metricRecorder)
    	}
    	if _, err := h.Pop(); err != nil {
    		t.Fatal(err)
    	}
    	if *metricRecorder != 2 {
    		t.Errorf("expected count to be 2 but got %d", *metricRecorder)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/MIPSOps.go

    		{name: "SLLconst", argLength: 1, reg: gp11, asm: "SLL", aux: "Int32"}, // arg0 << auxInt, shift amount must be 0 through 31 inclusive
    		{name: "SRL", argLength: 2, reg: gp21, asm: "SRL"},                    // arg0 >> arg1, unsigned, shift amount is mod 32
    		{name: "SRLconst", argLength: 1, reg: gp11, asm: "SRL", aux: "Int32"}, // arg0 >> auxInt, shift amount must be 0 through 31 inclusive
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 24K bytes
    - Viewed (0)
Back to top