Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,261 for multiplier (0.54 sec)

  1. pkg/kubelet/cm/dra/plugin/noderesources.go

    	resyncPeriod   = time.Duration(10 * time.Minute)
    	retryPeriod    = 5 * time.Second
    	maxRetryPeriod = 180 * time.Second
    	backoffFactor  = 2.0 // Introduce a backoff multiplier as jitter factor
    )
    
    // nodeResourcesController collects resource information from all registered
    // plugins and synchronizes that information with ResourceSlice objects.
    type nodeResourcesController struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. docs/config/README.md

    ```
    ~ mc admin config set alias/ scanner
    KEY:
    scanner  manage namespace scanning for usage calculation, lifecycle, healing and more
    
    ARGS:
    delay     (float)     scanner delay multiplier, defaults to '10.0'
    max_wait  (duration)  maximum wait time between operations, defaults to '15s'
    cycle     (duration)  time duration between scanner cycles
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 11 21:48:54 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    /// elements of the divisor are non-zero.
    
    /// Similarly, if the op is tf.MulNoNan and the multiplier is a constant tensor
    /// (with all the elements of any allowed type: float or complex), rewrite the
    /// op to the multiplier if all the elements of the multiplier are zero and to
    /// tf.Mul if all the elements of the multiplier are non-zero.
    
    /// Replace the given op with an op of type `RetT`. Upon calling
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  4. common/scripts/metallb-native.yaml

                      of priority in case of multiple matches. A pool with no priority
                      set will be used only if the pools with priority can't be used.
                      If multiple matching IPAddressPools are available it will check
                      for the availability of IPs sorting the matching IPAddressPools
                      by priority, starting from the highest to the lowest. If multiple
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/optimize.cc

            dyn_cast_or_null<TFL::MulOp>(fc_op.getInput().getDefiningOp());
        if (!mul_op) return failure();
        if (mul_op.getFusedActivationFunction() != "NONE") return failure();
    
        // Don't match muls where the multiplier constant is not 1D.
        {
          auto multiplier_shape = mlir::cast<ShapedType>(mul_op.getRhs().getType());
          if (!multiplier_shape.hasStaticShape()) return failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. docs/fr/docs/async.md

    * L'apprentissage profond (ou **Deep Learning**) : est un sous-domaine du **Machine Learning**, donc les mêmes raisons s'appliquent. Avec la différence qu'il n'y a pas une unique feuille de calcul de nombres à multiplier, mais une énorme quantité d'entre elles, et dans de nombreux cas, on utilise un processeur spécial pour construire et...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. src/crypto/internal/bigmod/nat.go

    			//
    			//   for i := 0; i < n; i++ {
    			//       d := bLimbs[i]
    			//       T[n+i] = addMulVVW(T[i:n+i], aLimbs, d)
    			//   }
    			//
    			// where d is a digit of the multiplier, T[i:n+i] is the shifted
    			// position of the product of that digit, and T[n+i] is the final carry.
    			// Note that T[i] isn't modified after processing the i-th digit.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        if (is_depthwise) {
          // The total number of depthwise convolution output channels will be
          // equal to input channel * `depth_multiplier`.
          const int64_t multiplier = dimension_numbers.getOutputFeatureDimension() /
                                     dimension_numbers.getInputFeatureDimension();
    
          rewriter.replaceOpWithNewOp<TFL::DepthwiseConv2DOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  9. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

        /**
         * A helper method to determine the value to resume the build with {@code -rf} taking into account the edge case
         *   where multiple modules in the reactor have the same artifactId.
         * <p>
         * {@code -rf :artifactId} will pick up the first module which matches, but when multiple modules in the reactor
         *   have the same artifactId, effective failed module might be later in build reactor.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        // results for depthwise transpose convolutions with non-1 channel
        // multiplier.
        if ((kernel_output_channels / feature_group_count) != 1) {
          return rewriter.notifyMatchFailure(
              conv_op,
              "Unsupported detphwise transpose convolution with non-1 channel "
              "multiplier");
        }
    
        // Slicing with dynamic offsets (helper method advised)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
Back to top