Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of about 10,000 for gather (0.26 sec)

  1. cmd/metrics.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

                !backward_pass_ops.contains(user)) {
              core_tpu_ops.insert(user);
            }
          }
        }
      }
    
      // Gather all TPU ops marked for compilation in this while loop body that also
      // are not in one of the two other sets.
      for (Operation& op : loop_body_func.getOps()) {
        // Find all TPU ops that don't belong to the forward or backward pass.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/check/checkers.go

    	}
    	return checkReachedClustersInNetwork(result, allClusters, expectedByNetwork)
    }
    
    func checkReachedNetworks(result echo.CallResult, allClusters cluster.Clusters, expectedByNetwork cluster.ClustersByNetwork) error {
    	// Gather the networks that were reached.
    	networkHits := make(map[string]int)
    	for _, rr := range result.Responses {
    		c := allClusters.GetByName(rr.Cluster)
    		if c != nil {
    			networkHits[c.NetworkName()]++
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 16:19:07 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  4. pilot/cmd/pilot-agent/status/server.go

    		case expfmt.OpenMetricsVersion_0_0_1, "":
    			return FmtOpenMetrics_0_0_1
    		}
    	}
    	return FmtText
    }
    
    func scrapeAndWriteAgentMetrics(registry prometheus.Gatherer, w io.Writer) error {
    	mfs, err := registry.Gather()
    	enc := expfmt.NewEncoder(w, FmtText)
    	if err != nil {
    		return err
    	}
    	for _, mf := range mfs {
    		if err := enc.Encode(mf); err != nil {
    			return err
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
  5. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

        module_str = self._extract_first_xla_call_module_op(
            self._output_saved_model_path
        )
        self.assertTrue(re.search('stablehlo.gather.*xi8>', module_str))
    
        # Due to other meta data, the compression is not exactly 1/4.
        self.assertLess(
            testing.get_size_ratio(
                self._output_saved_model_path, self._input_saved_model_path
            ),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/schema/schema.fbs

      //   f = scale * (q - zero_point)
      // For other quantization types, the QuantizationDetails below is used.
      min:[float];  // For importing back into tensorflow.
      max:[float];  // For importing back into tensorflow.
      scale:[float];  // For dequantizing the tensor's values.
      zero_point:[long];
    
      // If this is not none, the other quantization parameters (i.e. min, max,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    // a sign of a bug in an Analyzer.
    func (s *Set) Encode() []byte {
    	encoder := new(objectpath.Encoder)
    
    	// TODO(adonovan): opt: use a more efficient encoding
    	// that avoids repeating PkgPath for each fact.
    
    	// Gather all facts, including those from imported packages.
    	var gobFacts []gobFact
    
    	s.mu.Lock()
    	for k, fact := range s.m {
    		if debug {
    			log.Printf("%v => %s\n", k, fact)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. src/regexp/onepass.go

    		pc = i.Out
    		i = &p.Inst[pc]
    	}
    	// Avoid allocation of buffer if prefix is empty.
    	if iop(i) != syntax.InstRune || len(i.Rune) != 1 {
    		return "", i.Op == syntax.InstMatch, uint32(p.Start)
    	}
    
    	// Have prefix; gather characters.
    	var buf strings.Builder
    	for iop(i) == syntax.InstRune && len(i.Rune) == 1 && syntax.Flags(i.Arg)&syntax.FoldCase == 0 && i.Rune[0] != utf8.RuneError {
    		buf.WriteRune(i.Rune[0])
    		pc, i = i.Out, &p.Inst[i.Out]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_source.go

    	bindingList, err := s.bindingInformer.List(labels.Everything())
    	if err != nil {
    		// This should never happen unless types are misconfigured
    		// (can't use meta.accessor on them)
    		return nil, err
    	}
    
    	// Gather a list of all active policy bindings
    	for _, bindingSpec := range bindingList {
    		bindingAccessor := s.newBindingAccessor(bindingSpec)
    		policyKey := bindingAccessor.GetPolicyName()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 23:07:34 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

        rhs_remove_idx.insert(v);
      }
    
      // Gather shapes for output.
      for (auto v : ddn.lhs_batch_dimensions()) {
        output_shape.push_back(lhs_shape[v]);
      }
    
      // Batch dimension is gathered from the right side.
      if (output_shape.empty()) {
        for (auto v : ddn.rhs_batch_dimensions()) {
          output_shape.push_back(rhs_shape[v]);
        }
      }
    
      // Gather remaining dimensions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top