Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for gather (0.19 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_custom_aggregation_ops.cc

          : test_mode_(false), calib_opts_(calib_opts) {}
    
      InsertCustomAggregationOpsPass(const InsertCustomAggregationOpsPass &other) {
        test_mode_ = other.test_mode_;
        test_case_ = other.test_case_;
        calib_opts_ = other.calib_opts_;
        initializeForTest();
      }
    
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(InsertCustomAggregationOpsPass)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/testing/test_lift_quantizable_spots_as_functions_with_quantization_specs.cc

    // Configure `QuantizationSpecs` to apply `StaticRangePtq` to compute heavy
    // units.
    constexpr absl::string_view kSpecsStaticRangePtqToComputeHeavy =
        R"pb(specs
             [ {
               matcher { function_name { regex: "^.*(conv|dot|gather).*" } }
               method { static_range_ptq {} }
             }])pb";
    
    class TestLiftQuantizableSpotsAsFunctionsWithQuantizationSpecsPass
        : public impl::
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:21:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/capmanagers.go

    // such that the number of entries from updates does not exceed f.maxUpdateManagers.
    func (f *capManagersManager) capUpdateManagers(managed Managed) (newManaged Managed, err error) {
    	// Gather all entries from updates
    	updaters := []string{}
    	for manager, fields := range managed.Fields() {
    		if !fields.Applied() {
    			updaters = append(updaters, manager)
    		}
    	}
    	if len(updaters) <= f.maxUpdateManagers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/autoscaling/v1/types_swagger_doc_generated.go

    	"type":              "type is the type of metric source.  It should be one of \"ContainerResource\", \"External\", \"Object\", \"Pods\" or \"Resource\", each mapping to a matching field in the object. Note: \"ContainerResource\" type is available on when the feature-gate HPAContainerMetrics is enabled",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/autoscaling/v2beta1/generated.proto

    // (only `type` and one other matching field should be set at once).
    message MetricSpec {
      // type is the type of metric source.  It should be one of "ContainerResource",
      // "External", "Object", "Pods" or "Resource", each mapping to a matching field in the object.
      // Note: "ContainerResource" type is available on when the feature-gate
      // HPAContainerMetrics is enabled
      optional string type = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  6. test/typeparam/orderedmap.go

    	if _, found := m.Find([]byte("d")); found {
    		panic(fmt.Sprintf("unexpectedly found %q", []byte("d")))
    	}
    
    	gather := func(it *_Iterator[[]byte, int]) []int {
    		var r []int
    		for {
    			_, v, ok := it.Next()
    			if !ok {
    				return r
    			}
    			r = append(r, v)
    		}
    	}
    	got := gather(m.Iterate())
    	want := []int{'a', 'b', 'x'}
    	if !_SliceEqual(got, want) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins.adoc

    If you suspect issues with your plugin code, try creating a link:https://scans.gradle.com/[Build Scan] to identify bottlenecks.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 02:15:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/multicluster_analyzers_test.go

    }
    
    func addStore(sa *local.IstiodAnalyzer, clusterName string, yamls []string) error {
    	client := &fakeClientImpl{
    		CLIClient: kube.NewFakeClient(),
    		clusterID: cluster.ID(clusterName),
    	}
    	// Gather test files
    	src := file.NewKubeSource(collections.All)
    	for i, yamlFile := range yamls {
    		data, err := os.ReadFile(yamlFile)
    		if err != nil {
    			return err
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/autoscaling/v2beta1/generated.proto

    // (only `type` and one other matching field should be set at once).
    message MetricSpec {
      // type is the type of metric source.  It should be one of "ContainerResource",
      // "External", "Object", "Pods" or "Resource", each mapping to a matching field in the object.
      // Note: "ContainerResource" type is available on when the feature-gate
      // HPAContainerMetrics is enabled
      optional string type = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  10. hack/verify-api-groups.sh

    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    register_files=()
    while read -r file ; do
    	register_files+=("${file}")
    done < <(find pkg/apis -name register.go | sort)
    
    # every register file should contain a GroupName.  Gather the different representations.
    # 1. group directory name for client gen
    # 2. external group versions for init.sh all APIs list
    # 3. install packages for inclusion in import_known_versions files
    group_dirnames=()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 13 09:26:16 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top