Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 385 for evenly (0.13 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/ProducerGuard.java

         * guard instead.
         */
        public static <T> ProducerGuard<T> adaptive() {
            return new AdaptiveProducerGuard<T>();
        }
    
        /**
         * Creates a {@link ProducerGuard} which evenly spreads calls over a fixed number of locks.
         * This means that in some cases two different keys can block on the same lock. The benefit of
         * this strategy is that it uses only a fixed amount of memory. If your code depends on
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:31 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

            return mlir::emitError(
                location,
                llvm::formatv(
                    "incorrect input sharding configuration received. "
                    "{0}-th dimension of the input must be evenly divisible by {1}",
                    split_dimension, num_split));
          }
    
          shape[split_dimension] = shape[split_dimension] / num_split;
          output_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  3. cmd/endpoint-ellipses.go

    	return ep, nil
    }
    
    // GetAllSets - parses all ellipses input arguments, expands them into
    // corresponding list of endpoints chunked evenly in accordance with a
    // specific set size.
    // For example: {1...64} is divided into 4 sets each of size 16.
    // This applies to even distributed setup syntax as well.
    func GetAllSets(setDriveCount uint64, args ...string) ([][]string, error) {
    	var setArgs [][]string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_device.cc

      if (num_replicated_inputs % n != 0)
        return op.emitOpError()
               << "expects number of replicated inputs (" << num_replicated_inputs
               << ") to be evenly divisible by 'n' (" << n << ")";
    
      const int32_t num_replicated_block_args = num_replicated_inputs / n;
      if (num_replicated_block_args + num_packed_inputs != block.getNumArguments())
        return op.emitOpError()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  5. pkg/kubelet/container/runtime.go

    	// and store the resulting archive to the checkpoint directory.
    	CheckpointContainer(ctx context.Context, options *runtimeapi.CheckpointContainerRequest) error
    	// Generate pod status from the CRI event
    	GeneratePodStatus(event *runtimeapi.ContainerEventResponse) (*PodStatus, error)
    	// ListMetricDescriptors gets the descriptors for the metrics that will be returned in ListPodSandboxMetrics.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

          # We should change it at some point, but note #18545 when changing this.
          group_name="${NODE_INSTANCE_PREFIX}-group"
        fi
        # Spread the remaining number of nodes evenly
        this_mig_size=$((instances_left / (NUM_MIGS - i + 1)))
        instances_left=$((instances_left - this_mig_size))
    
        # Run instance-groups creation in parallel.
        {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. src/runtime/symtab.go

    // It must be very cheap to calculate.
    // For now, align to goarch.PtrSize and reduce mod the number of entries.
    // In practice, this appears to be fairly randomly and evenly distributed.
    func pcvalueCacheKey(targetpc uintptr) uintptr {
    	return (targetpc / goarch.PtrSize) % uintptr(len(pcvalueCache{}.entries))
    }
    
    // Returns the PCData value, and the PC where this value starts.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  8. src/runtime/mgcmark.go

    			// that we emit an in-progress event if this is
    			// the first event for the goroutine in the trace
    			// or trace generation. Also, do this between
    			// acquire/release because this is part of the
    			// goroutine's trace state, and it must be atomic
    			// with respect to the tracer.
    			gp.inMarkAssist = false
    			traceRelease(trace)
    		} else {
    			// This state is tracked even if tracing isn't enabled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/worker/TestEventSerializerTest.groovy

        }
    
        def "serializes TestStartEvent"() {
            def id = new CompositeIdGenerator.CompositeId(1L, 2L)
            def event1 = new TestStartEvent(123L, id)
            def event2 = new TestStartEvent(456L)
    
            when:
            def result1 = serialize(event1)
            def result2 = serialize(event2)
    
            then:
            result1 instanceof TestStartEvent
            result1.parentId == id
            result1.startTime == 123L
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

    //  tile_assignment_dimensions: 1
    //  tile_assignment_devices: 1
    // Serialized string:
    //  "\08\01\1A\01\01\22\01\01"
    //
    // -----
    
    
    // Tests tile sharding of inputs with number of splits that does not evenly divide
    // the input results in an error.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
Back to top