Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 112 for h_scale (0.29 sec)

  1. tensorflow/compiler/mlir/lite/quantization/numerical_utils.cc

        return {0, 0};
      }
    
      return {static_cast<int32_t>(quantized_multiplier), shift};
    }
    
    // Calculates the quantized range for a given scale, zero point, minimum and
    // maximum values, and quantization range.
    //
    // Args:
    //   scale: The scale factor for the quantized values.
    //   zero_point: The zero point for the quantized values.
    //   rmin: The minimum value of the quantized values.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 17 19:57:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/resource/math_test.go

    		value  int64
    		max    int64
    		result int64
    		scale  int32
    	}{
    		{100, 10, 1, 2},
    		{100, 10, 1, 2},
    		{100, 100, 1, 1},
    		{1, 10, 1, 0},
    	} {
    		r, s := removeInt64Factors(test.value, test.max)
    		if r != test.result {
    			t.Errorf("%v: unexpected result: %d", test, r)
    		}
    		if s != test.scale {
    			t.Errorf("%v: unexpected scale: %d", test, s)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 29 20:41:44 UTC 2017
    - 5.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/tests/rewrite_quantized_io.mlir

    tfr.func @tf__my_requantize(%input: !tfr.tensor) -> !tfr.tensor {
      %raw_data = tfr.quant_raw_data(%input) : (!tfr.tensor) -> !tfr.tensor
      %scale, %zp = tfr.quant_qparam(%input) : (!tfr.tensor) -> (!tfr.tensor, !tfr.tensor)
      %result = tfr.call @tf__requantize(%raw_data, %scale, %zp) : (!tfr.tensor, !tfr.tensor, !tfr.tensor) -> !tfr.tensor
      tfr.return %result : !tfr.tensor
    }
    
    // CHECK-LABEL: @tf__intermediate
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. docs/multi-tenancy/README.md

    1. [Standalone Deployment](#standalone-deployment)
    2. [Distributed Deployment](#distributed-deployment)
    3. [Cloud Scale Deployment](#cloud-scale-deployment)
    
    ## 1. Standalone Deployment
    
    To host multiple tenants on a single machine, run one MinIO Server per tenant with a dedicated HTTPS port, configuration, and data directory.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/measurement/measurement.go

    		}
    	}
    	return false
    }
    
    // Scale a measurement from a unit to a different unit and returns
    // the scaled value and the target unit. The returned target unit
    // will be empty if uninteresting (could be skipped).
    func Scale(value int64, fromUnit, toUnit string) (float64, string) {
    	// Avoid infinite recursion on overflow.
    	if value < 0 && -value > 0 {
    		v, u := Scale(-value, fromUnit, toUnit)
    		return -v, u
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. pkg/registry/authorization/util/helpers_test.go

    						Namespace:   "myns",
    						Verb:        "create",
    						Group:       "extensions",
    						Version:     "v1beta1",
    						Resource:    "deployments",
    						Subresource: "scale",
    						Name:        "mydeployment",
    					},
    				},
    			},
    			want: authorizer.AttributesRecord{
    				User: &user.DefaultInfo{
    					Name: "bob",
    				},
    				APIGroup:        "extensions",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 25 16:06:18 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/merge_test.go

    						"com.example.stable.v1.CRD1":                      {},
    						"com.example.stable.v1.CRD2":                      {},
    					},
    				},
    			},
    		},
    		{
    			name: "two CRDs with scale",
    			specs: []*spec3.OpenAPI{{
    				Paths: &spec3.Paths{
    					Paths: map[string]*spec3.Path{
    						"/apis/stable.example.com/v1/crd1": {},
    					},
    				},
    				Components: &spec3.Components{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 12 20:11:45 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/common/admin/head.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%>
    <meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <link href="${fe:url('/css/admin/bootstrap.min.css')}" rel="stylesheet" type="text/css" />
    <link href="${fe:url('/css/admin/font-awesome.min.css')}" rel="stylesheet" type="text/css" />
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 12:21:50 UTC 2020
    - 984 bytes
    - Viewed (0)
  9. cluster/addons/dns-horizontal-autoscaler/dns-horizontal-autoscaler.yaml

    rules:
      - apiGroups: [""]
        resources: ["nodes"]
        verbs: ["list", "watch"]
      - apiGroups: [""]
        resources: ["replicationcontrollers/scale"]
        verbs: ["get", "update"]
      - apiGroups: ["apps"]
        resources: ["deployments/scale", "replicasets/scale"]
        verbs: ["get", "update"]
    # Remove the configmaps rule once below issue is fixed:
    # kubernetes-incubator/cluster-proportional-autoscaler#16
      - apiGroups: [""]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/quantization/device_target.h

      OutputInputSameScale,
      OutputInputFreeScale,
      CustomScale,
    };
    
    // Each kernel signature has its own specification for scales.
    struct KernelSpec {
      // Scale constraint
      ScaleConstraintType type;
    
      // Custom function to derive the scales. Only available when the scale
      // constraint is `CustomScale`.
      ScaleFn scale_fn;
    };
    
    class KernelSpecs {
     public:
      using Signature = llvm::SmallVector<quant::AnyQuantizedType, 4>;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 10:41:08 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top