Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for asymmetric (0.15 sec)

  1. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

    union QuantizationDetails {
      CustomQuantization,
    }
    
    // Parameters for converting a quantized tensor back to float.
    table QuantizationParameters {
      // These four parameters are the asymmetric linear quantization parameters.
      // Given a quantized value q, the corresponding float value f should be:
      //   f = scale * (q - zero_point)
      // For other quantization types, the QuantizationDetails below is used.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  2. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/services/LLStandaloneFirElementByPsiElementChooser.kt

            return true
        }
    
        private fun modifiersMatch(psi: KtCallableDeclaration, fir: FirCallableDeclaration): Boolean {
            // According to asymmetric logic in `PsiRawFirBuilder`.
            if (psi.parentsOfType<KtDeclaration>().any { it.hasExpectModifier() } != fir.symbol.rawStatus.isExpect) return false
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 11:34:07 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// +optional
    	FeatureGates map[string]bool `json:"featureGates,omitempty"`
    
    	// The cluster name
    	// +optional
    	ClusterName string `json:"clusterName,omitempty"`
    
    	// EncryptionAlgorithm holds the type of asymmetric encryption algorithm used for keys and certificates.
    	// Can be one of "RSA-2048" (default), "RSA-3072", "RSA-4096" or "ECDSA-P256".
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/types.go

    	CIImageRepository string
    
    	// FeatureGates enabled by the user.
    	FeatureGates map[string]bool
    
    	// The cluster name
    	ClusterName string
    
    	// EncryptionAlgorithm holds the type of asymmetric encryption algorithm used for keys and certificates.
    	// Can be one of "RSA-2048" (default), "RSA-3072", "RSA-4096" or "ECDSA-P256".
    	EncryptionAlgorithm EncryptionAlgorithmType
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  5. src/crypto/rsa/rsa.go

    	mgf1XOR(db, mgfHash, seed)
    
    	lHash2 := db[0:hash.Size()]
    
    	// We have to validate the plaintext in constant time in order to avoid
    	// attacks like: J. Manger. A Chosen Ciphertext Attack on RSA Optimal
    	// Asymmetric Encryption Padding (OAEP) as Standardized in PKCS #1
    	// v2.0. In J. Kilian, editor, Advances in Cryptology.
    	lHash2Good := subtle.ConstantTimeCompare(lHash, lHash2)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    // there isn't such an edge one is created.
    func (n *Node) AddToEdgeDiv(to *Node, dv, v int64, residual, inline bool) {
    	if n.Out[to] != to.In[n] {
    		panic(fmt.Errorf("asymmetric edges %v %v", *n, *to))
    	}
    
    	if e := n.Out[to]; e != nil {
    		e.WeightDiv += dv
    		e.Weight += v
    		if residual {
    			e.Residual = true
    		}
    		if !inline {
    			e.Inline = false
    		}
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/quantize.mlir

    }
    
    // Checks that legacy path correctly handles asymmetric quantized values.
    // LEGACY-LABEL: CheckLegacyQuantizeAdd
    func.func @CheckLegacyQuantizeAdd() -> tensor<1x2x!quant.uniform<i8:f32, 0.0078431372549019607:-128>> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:10:13 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/obj9.go

    			//
    			// The constant x can be rewritten as ADDIS + ADD as follows:
    			//     ADDIS $x>>16 + (x>>15)&1, rX, rY
    			//     ADD   $int64(int16(x)), rY, rY
    			// The range is slightly asymmetric as 0x7FFF8000 and above overflow the sign bit, whereas for
    			// negative values, this would happen with constant values between -1 and -32768 which can
    			// assemble into a single addi.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // CHECK: return %[[CONV2D]] : tensor<1x3x2x2x!quant.uniform<i8:f32, 4.000000e+00>>
    
    // -----
    
    // Tests static range quantized dot_general with asymmetric quantized input.
    
    func.func @dot_general_upstream_srq_asym_input(%arg0: tensor<1x2x3x4x!quant.uniform<i8:f32, 1.000000e+0:-100>>) -> tensor<1x2x3x5x!quant.uniform<i8:f32, 4.000000e+0>> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/tests/insert_custom_aggregation_ops.mlir

    // HISTOGRAM-MSE-SYMMETRIC-CHECK-NEXT:  "tf.AddV2"
    // HISTOGRAM-MSE-SYMMETRIC-CHECK-NEXT:  return
    
    // HISTOGRAM-MSE-SYMMETRIC-CHECK: func @composite_conv2d_with_relu6_fn
    // HISTOGRAM-MSE-SYMMETRIC-CHECK-NEXT:  "tf.Conv2D"
    // HISTOGRAM-MSE-SYMMETRIC-CHECK-NEXT:  "tf.Relu6"
    // HISTOGRAM-MSE-SYMMETRIC-CHECK-NEXT:  return
    
    
    // -----
    
    module {
      // CHECK-LABEL: func.func @main
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 32.1K bytes
    - Viewed (0)
Back to top