Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 673 for maximal (0.12 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/MethodMap.java

                for (Iterator<Method> maximal = maximals.iterator(); !lessSpecific && maximal.hasNext(); ) {
                    Method max = maximal.next();
    
                    switch (moreSpecific(appArgs, max.getParameterTypes())) {
                        case MORE_SPECIFIC:
                            // This method is more specific than the previously
                            // known maximally specific, so remove the old maximum.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tpu_validate_inputs.mlir

    //  Proto debug string:
    //    type: 	 TUPLE
    //    tuple_shardings {
    //      type: MAXIMAL
    //      tile_assignment_dimensions: 1
    //      tile_assignment_devices: 0
    //    }
    //    tuple_shardings {
    //      type: MAXIMAL
    //      tile_assignment_dimensions: 1
    //      tile_assignment_devices: 1
    //    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

        if (sharding.type() == xla::OpSharding::MAXIMAL &&
            ((sharding.tile_assignment_devices(0) >= num_cores_per_replica) ||
             (sharding.tile_assignment_devices(0) < 0)))
          return cluster_func.emitError(llvm::formatv(
              "incorrect sharding format for outputs. Maximal "
              "sharding should be assigned to device id in range "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_sharding_identification_pass.cc

        const auto sharding = GetShardingFromVariant(sharding_or_op);
        return sharding && sharding->type() == xla::OpSharding::MAXIMAL;
      };
    
      // XLA SPMD only supports cases where all inputs/outputs exist on every
      // partition (sharded or replicated). If any of the inputs/outputs have
      // maximal sharding, then fallback to MPMD. Also fall back if any of the
      // shardings aren't compatible with the rank of their tensor.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Range.java

     *       #contains}.
     *   <li>Terminology note: a range {@code a} is said to be the <i>maximal</i> range having property
     *       <i>P</i> if, for all ranges {@code b} also having property <i>P</i>, {@code a.encloses(b)}.
     *       Likewise, {@code a} is <i>minimal</i> when {@code b.encloses(a)} for all {@code b} having
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tpu_sharding_identification.mlir

    }
    
    // -----
    // The following op sharding is used in the following test case:
    // Proto debug string:
    //   type: MAXIMAL
    //   tile_assignment_dimensions: 1
    //   tile_assignment_devices: 0
    // Serialized string:
    //   "\08\01\1A\01\01\22\01\00"
    // Proto debug string:
    //   type: MAXIMAL
    //   tile_assignment_dimensions: 1
    //   tile_assignment_devices: 1
    // Serialized string:
    //   "\08\01\1A\01\01\22\01\01"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 19:07:52 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Range.java

     *       #contains}.
     *   <li>Terminology note: a range {@code a} is said to be the <i>maximal</i> range having property
     *       <i>P</i> if, for all ranges {@code b} also having property <i>P</i>, {@code a.encloses(b)}.
     *       Likewise, {@code a} is <i>minimal</i> when {@code b.encloses(a)} for all {@code b} having
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  8. src/crypto/internal/boring/rsa.go

    	}
    
    	// BoringSSL uses sentinel salt length values like we do, but the values don't
    	// fully match what we use. We both use -1 for salt length equal to hash length,
    	// but BoringSSL uses -2 to mean maximal size where we use 0. In the latter
    	// case convert to the BoringSSL version.
    	if saltLen == 0 {
    		saltLen = -2
    	}
    
    	var out []byte
    	var outLen C.size_t
    	if priv.withKey(func(key *C.GO_RSA) C.int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 23:38:03 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tpu_validate_inputs.cc

      for (auto& sharding : shardings) {
        if (sharding.type() != xla::OpSharding::MAXIMAL) {
          continue;
        }
        if (sharding.tile_assignment_devices_size() != 1) {
          op->emitOpError("TF/XLA TPU bridge input check: There must be ")
              << "exactly 1 device for MAXIMAL sharding."
              << " Number of devices assigned are "
              << sharding.tile_assignment_devices_size() << "\n";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    	// it reports maximal usage during the last second.
    	currentInflightRequests = compbasemetrics.NewGaugeVec(
    		&compbasemetrics.GaugeOpts{
    			Subsystem:      APIServerComponent,
    			Name:           "current_inflight_requests",
    			Help:           "Maximal number of currently used inflight request limit of this apiserver per request kind in last second.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
Back to top