Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for 1024m (0.06 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

          batch_sizes: Sequence[int],
          target_opset: quant_opts_pb2.OpSet,
      ):
        lhs_batch_size, rhs_batch_size = batch_sizes
        input_shape = (*lhs_batch_size, 1, 1024)
        filter_shape = (*rhs_batch_size, 1024, 3)
        static_input_shape = [dim if dim is not None else 2 for dim in input_shape]
        model = self._create_matmul_model(
            input_shape,
            filter_shape,
            self._input_saved_model_path,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  2. src/hash/crc32/crc32_table_ppc64le.s

    DATA ·IEEEConst+3896(SB)/8,$0x000000017e221efc
    
    	/* x^11328 mod p(x), x^11264 mod p(x) */
    DATA ·IEEEConst+3904(SB)/8,$0x00000000b1dba570
    DATA ·IEEEConst+3912(SB)/8,$0x0000000167457c38
    
    	/* x^10304 mod p(x), x^10240 mod p(x) */
    DATA ·IEEEConst+3920(SB)/8,$0x00000001f6397b76
    DATA ·IEEEConst+3928(SB)/8,$0x00000000bdf081c4
    
    	/* x^9280 mod p(x), x^9216 mod p(x) */
    DATA ·IEEEConst+3936(SB)/8,$0x0000000156335214
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  3. pkg/kubelet/eviction/helpers_test.go

    	nodeFsAvailableBytes := uint64(1024)
    	nodeFsCapacityBytes := uint64(1024 * 2)
    	imageFsInodesFree := uint64(1024)
    	imageFsInodes := uint64(1024 * 1024)
    	nodeFsInodesFree := uint64(1024)
    	nodeFsInodes := uint64(1024 * 1024)
    	containerFsAvailableBytes := uint64(1024 * 1024 * 2)
    	containerFsCapacityBytes := uint64(1024 * 1024 * 8)
    	containerFsInodesFree := uint64(1024 * 2)
    	containerFsInodes := uint64(1024 * 2)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_node_status_test.go

    	addNotImplatedReaction(kubeClient)
    
    	machineInfo := &cadvisorapi.MachineInfo{
    		MachineID:      "123",
    		SystemUUID:     "abc",
    		BootID:         "1b3",
    		NumCores:       2,
    		MemoryCapacity: 1024,
    	}
    	kubelet.setCachedMachineInfo(machineInfo)
    
    	done := make(chan struct{})
    	go func() {
    		kubelet.registerWithAPIServer()
    		done <- struct{}{}
    	}()
    	select {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_test.go

    					return fmt.Errorf("unexpected load balancer. expected: %v, got: %v", cluster.Cluster_RING_HASH, c.LbPolicy)
    				}
    				if c.GetRingHashLbConfig().GetMinimumRingSize().Value != 1024 {
    					return fmt.Errorf("unexpected minimum ring size. expected: %v, got: %v", 1024, c.GetRingHashLbConfig().GetMinimumRingSize().Value)
    				}
    				return nil
    			},
    		},
    		{
    			"consistent hash settings with deprecated minring size",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

    // Use initial buffer size in flatbuffer builder to be same as the initial size
    // used by the TOCO export. (It does not explain rationale for this choice.)
    constexpr size_t kInitialBufferSize = 10240;
    
    // Flatbuffer fields to be padded to 16 bytes aligned.
    constexpr size_t kFbAlignment = 16;
    
    // Set `isSigned` to false if the `type` is an 8-bit unsigned integer type.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    port: 443 protocol: TCP targetPort: 443 annotations: {} loadBalancerIP: "" loadBalancerSourceRa: [] externalTrafficPolic: "" externalIPs: [] ipFamilyPolicy: "" ipFamilies: [] resources: requests: cpu: 100m memory: 128Mi limits: cpu: 2000m memory: 1024Mi autoscaling: enabled: true minReplicas: 1 maxReplicas: 5 targetCPUUtilization: 80 targetMemoryUtilizat: {} autoscaleBehavior: {} # Pod environment variables env: {} # Labels to apply to all resources labels: {} # Annotations to apply to all resources...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    		// We set hi to &size, but there are things above
    		// it. The 1024 is supposed to compensate this,
    		// but is somewhat arbitrary.
    		size := gp.stack.hi
    		if size == 0 {
    			size = 16384 * sys.StackGuardMultiplier
    		}
    		gp.stack.hi = uintptr(noescape(unsafe.Pointer(&size)))
    		gp.stack.lo = gp.stack.hi - size + 1024
    	}
    	// Initialize stack guard so that we can start calling regular
    	// Go code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

    <binarySI> | <decimalExponent> | <decimalSI> <binarySI>        ::= Ki | Mi | Gi | Ti | Pi | Ei\n\n\t(International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n\n<decimalSI>       ::= m | \"\" | k | M | G | T | P | E\n\n\t(Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n\n<decimalExponent> ::= \"e\" <signedNumber> | \"E\" <signedNumber> ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  10. src/net/http/serve_test.go

    func TestParseFormCleanup(t *testing.T) { run(t, testParseFormCleanup) }
    func testParseFormCleanup(t *testing.T, mode testMode) {
    	if mode == http2Mode {
    		t.Skip("https://go.dev/issue/20253")
    	}
    
    	const maxMemory = 1024
    	const key = "file"
    
    	if runtime.GOOS == "windows" {
    		// Windows sometimes refuses to remove a file that was just closed.
    		t.Skip("https://go.dev/issue/25965")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top