Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,126 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. src/slices/sort.go

    // MaxFunc returns the maximal value in x, using cmp to compare elements.
    // It panics if x is empty. If there is more than one maximal element
    // according to the cmp function, MaxFunc returns the first one.
    func MaxFunc[S ~[]E, E any](x S, cmp func(a, b E) int) E {
    	if len(x) < 1 {
    		panic("slices.MaxFunc: empty list")
    	}
    	m := x[0]
    	for i := 1; i < len(x); i++ {
    		if cmp(x[i], m) > 0 {
    			m = x[i]
    		}
    	}
    	return m
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 23:54:41 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

    //       dim {
    //         size: 8
    //       }
    // .   }
    //     kind: PARAMETER
    //     sharding {
    //       type: MAXIMAL
    //       tile_assignment_dimensions: 1
    //       tile_assignment_devices: 0
    //     }
    //   }
    //   retvals {
    //     sharding {
    //       type: MAXIMAL
    //       tile_assignment_dimensions: 1
    //       tile_assignment_devices: 0
    //     }
    //   }
    //   num_replicas: 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/api/events/v1/types.go

    	// +optional
    	Related *corev1.ObjectReference `json:"related,omitempty" protobuf:"bytes,9,opt,name=related"`
    
    	// note is a human-readable description of the status of this operation.
    	// Maximal length of the note is 1kB, but libraries should be prepared to
    	// handle values up to 64kB.
    	// +optional
    	Note string `json:"note,omitempty" protobuf:"bytes,10,opt,name=note"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top