Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 595 for weights (0.4 sec)

  1. RELEASE.md

            `tf.keras.mixed_precision.experimental.LossScaleOptimizer`, the weights
            of the `DynanmicLossScale` are copied into the `LossScaleOptimizer`
            instead of being reused. This means modifying the weights of the
            `DynamicLossScale` will no longer affect the weights of the
            LossScaleOptimizer, and vice versa.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

                // input. Only int8 weight is supported for now.
                inputs.push_back(dq_op.getOperand());
                is_operand_or_result_modified = true;
              } else {
                // Otherwise, it's the case where the operand is activations or the
                // quantizing_op is non-supported/weight-only.
                inputs.push_back(operand);
              }
            } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  3. pilot/pkg/xds/eds_test.go

    	adscConn := s.Connect(nil, nil, watchEds)
    	endpoints := adscConn.GetEndpoints()
    	lbe, f := endpoints["outbound|80||weighted.static.svc.cluster.local"]
    	if !f || len(lbe.Endpoints) == 0 {
    		t.Fatalf("No lb endpoints for %v, %v", "outbound|80||weighted.static.svc.cluster.local", adscConn.EndpointsJSON())
    	}
    	expected := map[string]uint32{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/weighted.yaml

            value: /get
        backendRefs:
          - name: httpbin
            port: 80
            weight: 2
          - name: httpbin-other
            port: 8080
            weight: 3
          - name: httpbin-zero
            port: 8080
            weight: 0
      - matches:
        - path:
            type: PathPrefix
            value: /weighted-100
        backendRefs:
        - filters:
          - requestHeaderModifier:
              add:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. pkg/test/loadbalancersim/loadbalancer/weight.go

    		helper: network2.NewConnectionHelper(name),
    	}
    }
    
    func (lb *weightedConnections) AllWeightsEqual() bool {
    	if len(lb.conns) == 0 {
    		return true
    	}
    
    	weight := lb.conns[0].Weight
    	for _, conn := range lb.conns {
    		if conn.Weight != weight {
    			return false
    		}
    	}
    	return true
    }
    
    func (lb *weightedConnections) get(index int) *WeightedConnection {
    	return lb.conns[index]
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 03 18:19:25 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.cc

    }
    
    // Returns the quantized type for the
    // input_type/min/max/storag_type_width/narrow_range.
    // This is entry point to the Quant dialect and used for both quantizing
    // activations and weights.
    Type GetQuantizedType(Builder builder, const Type input_type,
                          const ArrayRef<double> min, const ArrayRef<double> max,
                          const int quant_dim, const int storage_type_width,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/weighted.yaml.golden

        name: default.http.0
        route:
        - destination:
            host: httpbin.default.svc.domain.suffix
            port:
              number: 80
          weight: 2
        - destination:
            host: httpbin-other.default.svc.domain.suffix
            port:
              number: 8080
          weight: 3
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      annotations:
        internal.istio.io/parents: TCPRoute/tcp.default
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    format which contains three 1D tensors.
      }];
    
      let arguments = (ins
        TF_Int32Tensor:$indices_or_row_splits,
        TF_Int32Tensor:$values,
        TF_Float32Tensor:$weights,
    
        ConfinedAttr<I64Attr, [IntMinValue<1>]>:$sample_count,
        StrAttr:$combiner
      );
    
      let results = (outs
        TF_Int32Tensor:$row_ids,
        TF_Int32Tensor:$col_ids,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_weights.mlir

    // RUN: tf-quant-opt %s -split-input-file -quant-quantize-weights | FileCheck %s
    
    module {
      func.func @not_quantize_const() -> (tensor<2x1024xf32>) {
        // Nothing happens if not connected wiht quantizable op.
        %cst_0 = "tf.Const"() {value = dense<2.000000e+00> : tensor<2x1024xf32>} : () -> tensor<2x1024xf32>
        func.return %cst_0: tensor<2x1024xf32>
      }
    
    // CHECK-LABEL: func @not_quantize_const
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 42K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      }];
    
      let description = [{
    Outputs a vector with length `size` and the same dtype as `weights`. If
    `weights` are empty, then index `i` stores the number of times the value `i` is
    counted in `arr`. If `weights` are non-empty, then index `i` stores the sum of
    the value in `weights` at each index where the corresponding value in `arr` is
    `i`.
    
    Values in `arr` outside of the range [0, size) are ignored.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top