Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for Sizes (0.06 sec)

  1. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        keyEquivalence = builder.getKeyEquivalence();
        this.entryHelper = entryHelper;
    
        int initialCapacity = Math.min(builder.getInitialCapacity(), MAXIMUM_CAPACITY);
    
        // Find power-of-two sizes best matching arguments. Constraints:
        // (segmentCount > concurrencyLevel)
        int segmentShift = 0;
        int segmentCount = 1;
        while (segmentCount < concurrencyLevel) {
          ++segmentShift;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (Move [7] dst src mem) =>
    	(MOVBstore [6] dst (MOVBZload [6] src mem)
    		(MOVHstore [4] dst (MOVHZload [4] src mem)
    			(MOVWstore dst (MOVWZload src mem) mem)))
    
    // MVC for other moves. Use up to 4 instructions (sizes up to 1024 bytes).
    (Move [s] dst src mem) && s > 0 && s <= 256 && logLargeCopy(v, s) =>
    	(MVC [makeValAndOff(int32(s), 0)] dst src mem)
    (Move [s] dst src mem) && s > 256 && s <= 512 && logLargeCopy(v, s) =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    replicated TPU computation. The number of times a TPU computation is
    replicated is defined in the `tf.TPUReplicateMetadata` op (`num_replicas`
    attribute) and operand and result sizes of `tf.TPUReplicatedInput` and
    `tf.TPUReplicatedOutput` respectively must match, excluding packed tensors.
    It is also assumed ops of the same TPU computation do not have ops outside
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
Back to top