Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 188 for w_scale (0.1 sec)

  1. pkg/apis/autoscaling/validation/validation.go

    )
    
    // ValidateScale validates a Scale and returns an ErrorList with any errors.
    func ValidateScale(scale *autoscaling.Scale) field.ErrorList {
    	allErrs := field.ErrorList{}
    	allErrs = append(allErrs, apivalidation.ValidateObjectMeta(&scale.ObjectMeta, true, apimachineryvalidation.NameIsDNSSubdomain, field.NewPath("metadata"))...)
    
    	if scale.Spec.Replicas < 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 25 00:58:00 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/utils/lstm_utils.h

    // needed to construct the operands for the fused op. The caller provides the
    // containing FuncOp as input with arguments specifying the input, weight,
    // projection, bias and layer norm scale. The weight, projection, bias and
    // layer norm scale all need to be RankedTensorType.
    // This class overrides the layer norm coefficient setters from the base class.
    class ConvertLayerNormalizedLSTMCellSimpleToFusedLSTM
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 03 00:14:05 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/cc/constant_fold_test.cc

      constexpr absl::string_view kModuleCode = R"mlir(
        module {
          func.func @test_fold_constant() -> (tensor<1024x24x24x3xf32>) {
            %zp = "tf.Const"() {value = dense<2> : tensor<i32>} : () -> tensor<i32>
            %scale = "tf.Const"() {value = dense<2.0> : tensor<f32>} : () -> tensor<f32>
            %weight = "tf.Const"() {value = dense<1> : tensor<1024x24x24x3xi8>} : () -> tensor<1024x24x24x3xi8>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 07:19:09 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm64.go

    	{"kern.cp_time2", []_C_int{1, 71}},
    	{"kern.cpustats", []_C_int{1, 85}},
    	{"kern.domainname", []_C_int{1, 22}},
    	{"kern.file", []_C_int{1, 73}},
    	{"kern.forkstat", []_C_int{1, 42}},
    	{"kern.fscale", []_C_int{1, 46}},
    	{"kern.fsync", []_C_int{1, 33}},
    	{"kern.global_ptrace", []_C_int{1, 81}},
    	{"kern.hostid", []_C_int{1, 11}},
    	{"kern.hostname", []_C_int{1, 10}},
    	{"kern.intrcnt.nintrcnt", []_C_int{1, 63, 1}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize.cc

        }
        return success(changed);
      }
    
     private:
      // Checks whether the operation is connected with a composite function.
      // If not, the same-scale op will not be quantized. This decision is based
      // on the current assumption that the performance gain of the same-scale
      // op itself could not beat the overhead of the quantize and dequantize
      // routines need to be added around that op. When the assumption changes,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1beta1.CustomResourceDefinition.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/end2end/fake_quant_per_channel_4bit.pbtxt

    # CHECK:       quantization: {
    # CHECK:         scale: [ 0.093635 ],
    # CHECK:         zero_point: [ 22 ]
    # CHECK:       }
    # CHECK:     }, {
    # CHECK:       shape: [ 1, 6, 31 ],
    # CHECK:       type: INT8,
    # CHECK:       buffer: 6,
    # CHECK:       name: "output",
    # CHECK:       quantization: {
    # CHECK:         scale: [ 0.093635 ],
    # CHECK:         zero_point: [ 22 ]
    # CHECK:       }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1beta1/generated.proto

    }
    
    // Scale represents a scaling request for a resource.
    message Scale {
      // Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  9. pkg/apis/apps/v1beta2/zz_generated.conversion.go

    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1beta2.Scale)(nil), (*autoscaling.Scale)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1beta2_Scale_To_autoscaling_Scale(a.(*v1beta2.Scale), b.(*autoscaling.Scale), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*autoscaling.Scale)(nil), (*v1beta2.Scale)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 74.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysctl_openbsd_mips64.go

    	{"kern.cp_time2", []_C_int{1, 71}},
    	{"kern.cpustats", []_C_int{1, 85}},
    	{"kern.domainname", []_C_int{1, 22}},
    	{"kern.file", []_C_int{1, 73}},
    	{"kern.forkstat", []_C_int{1, 42}},
    	{"kern.fscale", []_C_int{1, 46}},
    	{"kern.fsync", []_C_int{1, 33}},
    	{"kern.global_ptrace", []_C_int{1, 81}},
    	{"kern.hostid", []_C_int{1, 11}},
    	{"kern.hostname", []_C_int{1, 10}},
    	{"kern.intrcnt.nintrcnt", []_C_int{1, 63, 1}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top