Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 884 for scaleY (0.29 sec)

  1. staging/src/k8s.io/api/apps/v1beta2/generated.proto

      optional ScaleSpec spec = 2;
    
      // current status of the scale. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status. Read-only.
      // +optional
      optional ScaleStatus status = 3;
    }
    
    // ScaleSpec describes the attributes of a scale subresource
    message ScaleSpec {
      // desired number of instances for the scaled object.
      // +optional
      optional int32 replicas = 1;
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  2. docs/en/data/sponsors.yml

        title: Reflex
        img: https://fastapi.tiangolo.com/img/sponsors/reflex.png
      - url: https://github.com/scalar/scalar/?utm_source=fastapi&utm_medium=website&utm_campaign=main-badge
        title: "Scalar: Beautiful Open-Source API References from Swagger/OpenAPI files"
        img: https://fastapi.tiangolo.com/img/sponsors/scalar.svg
      - url: https://www.propelauth.com/?utm_source=fastapi&utm_campaign=1223&utm_medium=mainbadge
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

      // Variables to control TFL Numeric Verify
      NumericVerifySpec numeric_verify_spec;
    
      // Variables related to quantization
      QuantSpec quant_spec;
    };
    
    // Re-calculates scales again in float instead of simply downcasting existing
    // scales.
    quant::QuantizedType DownCastScale(quant::QuantizedType type,
                                       const SmallVectorImpl<double>& mins,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  4. src/crypto/internal/edwards25519/scalar.go

    func (s *Scalar) Add(x, y *Scalar) *Scalar {
    	// s = 1 * x + y mod l
    	fiatScalarAdd(&s.s, &x.s, &y.s)
    	return s
    }
    
    // Subtract sets s = x - y mod l, and returns s.
    func (s *Scalar) Subtract(x, y *Scalar) *Scalar {
    	// s = -1 * y + x mod l
    	fiatScalarSub(&s.s, &x.s, &y.s)
    	return s
    }
    
    // Negate sets s = -x mod l, and returns s.
    func (s *Scalar) Negate(x *Scalar) *Scalar {
    	// s = -1 * x + 0 mod l
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. cluster/addons/fluentd-gcp/README.md

    Learn more at: https://kubernetes.io/docs/tasks/debug-application-cluster/logging-stackdriver
    
    ## Troubleshooting
    
    In Kubernetes clusters in version 1.10.0 or later, fluentd-gcp DaemonSet can be
    manually scaled. This is useful e.g. when applications running in the cluster
    are sending a large volume of logs (i.e. over 100kB/s), causing fluentd-gcp to
    fail with OutOfMemory errors. Conversely, if the applications aren't generating
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  6. pkg/controller/deployment/sync_test.go

    			expectedNew: rs("foo-v3", 1, nil, newTimestamp),
    			expectedOld: []*apps.ReplicaSet{rs("foo-v2", 5, nil, oldTimestamp), rs("foo-v1", 2, nil, olderTimestamp)},
    		},
    		// Scales up the new replica set.
    		{
    			name:          "leftover distribution: 3 -> 4",
    			deployment:    newDeployment("foo", 4, nil, nil, nil, nil),
    			oldDeployment: newDeployment("foo", 3, nil, nil, nil, nil),
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  7. pkg/controller/deployment/util/deployment_util.go

    // step. For example:
    //
    // 2 desired, max unavailable 1%, surge 0% - should scale old(-1), then new(+1), then old(-1), then new(+1)
    // 1 desired, max unavailable 1%, surge 0% - should scale old(-1), then new(+1)
    // 2 desired, max unavailable 25%, surge 1% - should scale new(+1), then old(-1), then new(+1), then old(-1)
    // 1 desired, max unavailable 25%, surge 1% - should scale new(+1), then old(-1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.h

      // Infer output ranges for activation ops and constants. This is usually
      // required for post-training quantization.
      const bool infer_tensor_range_;
    
      // Calculate scales in float instead of double, so that the scales and
      // quantized values are exactly the same with the TOCO quantizer.
      const bool legacy_float_scale_;
    
      // If true, the model is a floating point graph with QDQ ops to be eliminated
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:42:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

        float_min = -float_max;
      }
    
      ASSERT_THAT(quantized_quant_params.scale, SizeIs(1));
      ASSERT_THAT(quantized_quant_params.zero_point, SizeIs(1));
      float scale = (float_max - float_min) / ((1 << bit_num) - 1);
      EXPECT_THAT(scale, FloatNear(quantized_quant_params.scale[0], eps));
    }
    
    class QuantizeModelTest : public testing::Test {
     protected:
      QuantizeModelTest() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

        float_scales.push_back(scales[i]);
        int32_zero_points.push_back(zero_points[i]);
      }
      scale = rewriter.create<TF::ConstOp>(
          loc, scale_type, DenseFPElementsAttr::get(scale_type, float_scales));
      zero_point = rewriter.create<TF::ConstOp>(
          loc, zero_point_type,
          DenseIntElementsAttr::get(zero_point_type, int32_zero_points));
      return success(scale && zero_point);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
Back to top