Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for beforeSend (0.17 sec)

  1. pkg/controller/replicaset/replica_set.go

    		// is we'd need to wait on the result of a create to record the pod's
    		// UID, which would require locking *across* the create, which will turn
    		// into a performance bottleneck. We should generate a UID for the pod
    		// beforehand and store it via ExpectCreations.
    		rsc.expectations.ExpectCreations(logger, rsKey, diff)
    		logger.V(2).Info("Too few replicas", "replicaSet", klog.KObj(rs), "need", *(rs.Spec.Replicas), "creating", diff)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_communication.cc

        OpVisitorState op_to_visit = ops_to_visit.pop_back_val();
        Operation* curr_op = op_to_visit.op;
    
        Value token = op_to_visit.token;
        // Ops may be removed, so the next op is kept track of beforehand.
        Operation* next_op = curr_op->getNextNode();
    
        if (auto host_compute = dyn_cast<TF::_XlaHostComputeMlirOp>(curr_op)) {
          token = RewriteHostComputeOp(builder, host_compute, token);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

                                        METHOD_STATIC_RANGE_WEIGHT_ONLY_INT8) {
          // Skipping input type check for weight-only quantization as it can be
          // dequantized beforehand for the legacy scheme.
          has_quantized_types = true;
        } else {
          // Determines if all required float input/outputs are now quantized.
          // Either one of the criteria needs to meet.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

                                              BoolAttr adj_y) {
      // TensorFlow BatchMatMulOp allows the batch dimensions to be broadcastable
      // while the XlaDotV2Op doesn't. So we have to broadcast them beforehand.
      BroadcastBatchDimensionsForBatchMatMul(builder, loc, input, weight);
    
      // Both input and weight have the same rank after broadcasting.
      ShapedType weight_shape = mlir::cast<ShapedType>(weight.getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    ----
    $ gradle init --type java-library
    ----
    
    === Standardize and provision Gradle
    The built-in `gradle wrapper` task generates a script, `gradlew`, that invokes a declared version of Gradle, downloading it beforehand if necessary.
    
    ----
    $ gradle wrapper --gradle-version=8.1
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  6. src/runtime/export_test.go

    func ReadCPUStats() CPUStats {
    	return work.cpuStats
    }
    
    func ReadMetricsSlow(memStats *MemStats, samplesp unsafe.Pointer, len, cap int) {
    	stw := stopTheWorld(stwForTestReadMetricsSlow)
    
    	// Initialize the metrics beforehand because this could
    	// allocate and skew the stats.
    	metricsLock()
    	initMetrics()
    
    	systemstack(func() {
    		// Donate the racectx to g0. readMetricsLocked calls into the race detector
    		// via map access.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/asm6.go

    	rex &= 0x40 | Rxr
    	if a.Offset != int64(int32(a.Offset)) {
    		// The rules are slightly different for 386 and AMD64,
    		// mostly for historical reasons. We may unify them later,
    		// but it must be discussed beforehand.
    		//
    		// For 64bit mode only LEAL is allowed to overflow.
    		// It's how https://golang.org/cl/59630 made it.
    		// crypto/sha1/sha1block_amd64.s depends on this feature.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  8. RELEASE.md

    *   Hot-fix was needed for an issue affecting the TensorFlow installation
        process.
        *   TensorFlow 2.15.0 Python package was requesting `tensorrt`-related
            packages that cannot be found unless the user installs them beforehand
            or provides additional installation flags.
        *   This dependency affected anyone installing TensorFlow 2.15 alongside
            NVIDIA CUDA dependencies via `pip install tensorflow[and-cuda]`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top