Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for cl_weight (0.15 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_xla.mlir

      %weight = arith.constant dense<1.0> : tensor<144x12xf32>
      %q_weight = "quantfork.qcast"(%weight) : (tensor<144x12xf32>) -> tensor<144x12x!quant.uniform<i8:f32, 0.074855112561992565:-1>>
      %dq_weight = "quantfork.dcast"(%q_weight) : (tensor<144x12x!quant.uniform<i8:f32, 0.074855112561992565:-1>>) -> tensor<144x12xf32>
      %9 = "tf.MatMul"(%7, %dq_weight) {transpose_a = false, transpose_b = false} : (tensor<*xf32>, tensor<144x12xf32>) -> tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:32:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize.mlir

      %dq_input= "quantfork.dcast"(%q_input) : (tensor<1x3x4x3x!quant.uniform<i8:f32, 0.58810077742034317:-128>>) -> tensor<1x3x4x3xf32>
      %q_weight = "quantfork.qcast"(%weight) : (tensor<2x3x3x2xf32>) -> tensor<2x3x3x2x!quant.uniform<i8:f32, 0.074855112561992565:-1>>
      %dq_weight = "quantfork.dcast"(%q_weight) : (tensor<2x3x3x2x!quant.uniform<i8:f32, 0.074855112561992565:-1>>) -> tensor<2x3x3x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:32:28 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

      } else if (!isa<TF::ConstOp>(op_input)) {
        return false;
      }
      if (isa<TF::CastOp>(op_weight)) {
        op_weight = op_weight->getOperand(0).getDefiningOp();
      } else if (!isa<TF::ConstOp>(op_weight)) {
        return false;
      }
    
      if (!IsRankedInt(op_weight->getResult(0), 8)) return false;
      if (!IsRankedInt(op_input->getResult(0), 8)) return false;
    
      return true;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container_windows.go

    		//   JOB_OBJECT_CPU_RATE_CONTROL_WEIGHT_BASED or JOB_OBJECT_CPU_RATE_CONTROL_HARD_CAP. This is why the settings are mutually exclusive.
    		// Part two - Docker (doc: https://docs.docker.com/engine/api/v1.30)
    		//   If both CpuWeight and CpuMaximum are passed to Docker, then it sets
    		//   JOB_OBJECT_CPU_RATE_CONTROL_ENABLE = JOB_OBJECT_CPU_RATE_CONTROL_WEIGHT_BASED ignoring CpuMaximum.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_builder_test.go

    						},
    						LbWeight: 30,
    					},
    				},
    				{
    					Service:     service,
    					ServicePort: servicePort,
    					Endpoint: &model.IstioEndpoint{
    						Address:      "192.168.1.2",
    						EndpointPort: 10001,
    						Locality: model.Locality{
    							ClusterID: "cluster-2",
    							Label:     "region1/zone1/subzone1",
    						},
    						LbWeight: 30,
    					},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

      }
      // TODO: b/323478683 - Make storage_type_width and narrow_range configurable.
      Type final_type;
      const auto it = optimized_weights_.find(op);
      const bool is_weight = it != optimized_weights_.end();
      const bool is_weight_with_per_channel_support =
          is_weight && it->second != -1 && is_signed_;
    
      if (is_weight_with_per_channel_support && !disable_per_channel_) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/serviceentry/conversion.go

    			LegacyClusterPortKey: int(servicePort.Number),
    			Network:              network.ID(wle.Network),
    			Locality: model.Locality{
    				Label:     locality,
    				ClusterID: clusterID,
    			},
    			LbWeight:       wle.Weight,
    			Labels:         labels,
    			TLSMode:        tlsMode,
    			ServiceAccount: sa,
    			// Workload entry config name is used as workload name, which will appear in metric label.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. pilot/pkg/model/service.go

    }
    
    // GetLoadBalancingWeight returns the weight for this endpoint, normalized to always be > 0.
    func (ep *IstioEndpoint) GetLoadBalancingWeight() uint32 {
    	if ep.LbWeight > 0 {
    		return ep.LbWeight
    	}
    	return 1
    }
    
    // IsDiscoverableFromProxy indicates whether this endpoint is discoverable from the given Proxy.
    func (ep *IstioEndpoint) IsDiscoverableFromProxy(p *Proxy) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_test.go

    				Address:         "6.6.6.6",
    				ServicePortName: servicePort[0].Name,
    				EndpointPort:    10001,
    				Locality: model.Locality{
    					ClusterID: "",
    					Label:     "region1/zone1/subzone1",
    				},
    				LbWeight: 40,
    				TLSMode:  model.IstioMutualTLSModeLabel,
    			},
    		},
    		{
    			Service:     service,
    			ServicePort: servicePort[0],
    			Endpoint: &model.IstioEndpoint{
    				Address:         "6.6.6.6",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
Back to top