Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,147 for gather (0.15 sec)

  1. cmd/metacache-server-pool.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: Thu May 23 01:12:23 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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/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)
  6. 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)
  7. 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)
  8. pkg/kubelet/cm/dra/plugin/noderesources.go

    		return true
    	}
    
    	c.queue.Forget(key)
    	return true
    }
    
    func (c *nodeResourcesController) sync(ctx context.Context, driverName string) error {
    	logger := klog.FromContext(ctx)
    
    	// Gather information about the actual and desired state.
    	slices := c.sliceStore.List()
    	var driverResources []*resourceapi.ResourceModel
    	c.mutex.RLock()
    	if active, ok := c.activePlugins[driverName]; ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/executor_island_coarsening.cc

          : inner_op_result(inner_op_result), island_result(island_result) {}
    
      Value inner_op_result;
      Value island_result;
    };
    
    // This structure is used to gather the new operands and result of an island
    // during merging.
    struct IslandOperandsAndResults {
      llvm::SmallSetVector<Value, 8> operands;
      llvm::SmallVector<IslandResult> results;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      // followed by gather. This is used when the saved model import path is used
      // during which resources don't get frozen in the python layer.
      pass_manager->addNestedPass<mlir::func::FuncOp>(
          mlir::TFDevice::CreateDecomposeResourceOpsPass());
    
      pass_manager->addPass(mlir::TF::CreateTFRegionControlFlowToFunctional());
    }
    
    // This is the later part of the conversion in isolation. This enables a caller
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top