Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,548 for maximal (0.2 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/argument-sharding.mlir

    //   tile_assignment_dimensions: 2
    //   tile_assignment_devices: 0
    //   tile_assignment_devices: 1
    //
    //  Serialized string:
    //   "\08\01\1A\01\01\22\01\00"
    //  Proto debug string:
    //   type: MAXIMAL
    //   tile_assignment_dimensions: 1
    //   tile_assignment_devices: 0
    //
    //  Serialized string:
    //   ""
    //  Proto debug string (empty but would equivalent to):
    //   type: REPLICATED
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  2. 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)
  3. tensorflow/compiler/mlir/tensorflow/tests/xla_sharding_util_test.cc

    }
    
    TEST(DecodeShardingAttributeTest, CheckMaximalShardString) {
      xla::OpSharding sharding;
      EXPECT_TRUE(
          DecodeShardingAttribute("{maximal device=0}", sharding).succeeded());
      EXPECT_TRUE(sharding.type() == sharding.MAXIMAL);
      EXPECT_EQ(1, sharding.tile_assignment_devices_size());
    }
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/result-sharding.mlir

    //   tile_assignment_dimensions: 2
    //   tile_assignment_devices: 0
    //   tile_assignment_devices: 1
    //
    //  Serialized string:
    //   "\08\01\1A\01\01\22\01\00"
    //  Proto debug string:
    //   type: MAXIMAL
    //   tile_assignment_dimensions: 1
    //   tile_assignment_devices: 0
    //
    //  Serialized string:
    //   ""
    //  Proto debug string (empty but would equivalent to):
    //   type: REPLICATED
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 23 18:56:13 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/apiserver/pkg/server/filters/maxinflight.go

    	"k8s.io/klog/v2"
    )
    
    const (
    	// Constant for the retry-after interval on rate limiting.
    	retryAfter = "1"
    
    	// How often inflight usage metric should be updated. Because
    	// the metrics tracks maximal value over period making this
    	// longer will increase the metric value.
    	inflightUsageMetricUpdatePeriod = time.Second
    )
    
    var (
    	nonMutatingRequestVerbs = sets.NewString("get", "list", "watch")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 11:34:15 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  10. 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)
Back to top