Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for 1024m (0.2 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/cm/memorymanager/policy_static_test.go

    				},
    			},
    			machineState: state.NUMANodeMap{
    				0: &state.NUMANodeState{
    					MemoryMap: map[v1.ResourceName]*state.MemoryTable{
    						v1.ResourceMemory: {
    							Allocatable:    10240 * mb,
    							Free:           10240 * mb,
    							Reserved:       0,
    							SystemReserved: 512 * mb,
    							TotalMemSize:   10 * gb,
    						},
    						hugepages1Gi: {
    							Allocatable:    10 * gb,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    protected static final char[] VERSION; protected static final char[] NCODING; protected static final char[] TANDALONE; protected static final char[] YES; protected static final char[] NO; protected static final int LOOKUP_MAX = 1024; protected static final char LOOKUP_MAX_CHAR = 1024; protected static boolean[] lookupNameStartChar; protected static boolean[] lookupNameChar; protected void resetStringCache(); protected String newString(char[], int, int); protected String newStringIntern(char[], int, int);...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 164.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top