Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for HYBRID (0.14 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/multicluster/httproute-hybrid.yaml

    Alexander Zielenski <******@****.***> 1697824555 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 382 bytes
    - Viewed (0)
  2. pkg/jwt/jwt.go

    )
    
    type JwksFetchMode int
    
    const (
    	// Istiod is used to indicate Istiod ALWAYS fetches the JWKs server
    	Istiod JwksFetchMode = iota
    
    	// Hybrid is used to indicate Envoy fetches the JWKs server when there is a cluster entry,
    	// otherwise fallback to Istiod
    	Hybrid
    
    	// Envoy is used to indicate Envoy ALWAYS fetches the JWKs server
    	Envoy
    )
    
    // String converts JwksFetchMode to readable string.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 25 00:53:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/common/targets.h

      QUANTIZED_UINT8 = 3,
      HYBRID = 4
    };
    
    inline InferenceType GetInferenceTypeEnum(llvm::StringRef inference_type_str) {
      if (inference_type_str == "FLOAT") {
        return FLOAT;
      } else if (inference_type_str == "QUANTIZED_INT8") {
        return QUANTIZED_INT8;
      } else if (inference_type_str == "QUANTIZED_UINT8") {
        return QUANTIZED_UINT8;
      } else if (inference_type_str == "HYBRID") {
        return HYBRID;
      } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. releasenotes/notes/jwks-cluster.yaml

    area: security
    releaseNotes:
      - |
        **Fixed** an issue where gateways cannot fetch JWKS from `jwksUri` in RequestAuthentication 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 10:45:06 UTC 2023
    - 296 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/tac/transforms/cost_model.cc

          GetTransferredElementCount(from_graph, to_graph);
    
      if (from_inference_type == FLOAT || from_inference_type == HYBRID) {
        // FLOAT <-> HYBRID will have no quant/dequant as well.
        if (to_inference_type == FLOAT || to_inference_type == HYBRID) {
          return 0;
        } else if (to_inference_type == QUANTIZED_INT8 ||
                   to_inference_type == QUANTIZED_UINT8) {
          // QUANT path.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. architecture/standards/README.md

    For now we just have this global repository of ADRs.
    If we see fit, we can break these out to per-platform ones, or keep a hybrid approach to having global and platform-specific ADSs.
    
    Our aim is to keep the process lightweight and approachable.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 06:30:44 UTC 2024
    - 546 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize/quantize_weight_only.mlir

    // RUN: stablehlo-quant-opt %s -split-input-file -stablehlo-quantize | FileCheck %s
    
    // Test that hybrid quantized dot_general is produced when q/dq pair only exists
    // for weight.
    
    module attributes {tf_saved_model.semantics} {
      func.func private @quantize_dot_general_fn(%arg0: tensor<1x2xf32>) -> tensor<1x3xf32> attributes {tf._original_func_name = "main_0"} {
        %cst = stablehlo.constant dense<3.000000e-01> : tensor<2x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/crypto/x509/hybrid_pool_test.go

    		t.Fatalf("verification failed for google.com chain (system only pool): %s", err)
    	}
    
    	pool.AddCert(root)
    
    	_, err = googChain[0].Verify(opts)
    	if err != nil {
    		t.Fatalf("verification failed for google.com chain (hybrid pool): %s", err)
    	}
    
    	certTmpl := &x509.Certificate{
    		SerialNumber: big.NewInt(1),
    		NotBefore:    time.Now().Add(-time.Hour),
    		NotAfter:     time.Now().Add(time.Hour * 10),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:48:11 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/tac/common/utils.cc

      }
    
      // We should not observe both uint8 & int8.
      if (int8_type_observed && uint8_type_observed) return UNKNOWN;
    
      if (float_type_observed) {
        if (int8_type_observed || uint8_type_observed) {
          return HYBRID;
        } else {
          return FLOAT;
        }
      }
    
      if (int8_type_observed) {
        return QUANTIZED_INT8;
      }
    
      if (uint8_type_observed) {
        return QUANTIZED_UINT8;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 05:37:07 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/quantize_patterns.td

    // point constant.
    def : Pat<(TFL_DequantizeOp
                 (TFL_QuantizeOp (Arith_ConstantOp F32ElementsAttr:$cst), $qt)),
              (TFL_ConstOp $cst)>;
    
    // Transpose conv supports hybrid computation with quantized weights.
    def FoldQuantWeightsIntoTposeConv : Pat<
      (TFL_TransposeConvOp
        $output_shape,
        (TFL_DequantizeOp $quant_weights),
        $quant_input,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:10:13 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top