Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for SYMMETRIC (0.15 sec)

  1. src/math/big/arith_s390x_test.go

    			arg := a
    			testFunVV(t, "addVV_novec", addVV_novec, arg)
    
    			arg = argVV{a.z, a.y, a.x, a.c}
    			testFunVV(t, "addVV_novec symmetric", addVV_novec, arg)
    
    			arg = argVV{a.x, a.z, a.y, a.c}
    			testFunVV(t, "subVV_novec", subVV_novec, arg)
    
    			arg = argVV{a.y, a.z, a.x, a.c}
    			testFunVV(t, "subVV_novec symmetric", subVV_novec, arg)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 770 bytes
    - Viewed (0)
  2. src/go/types/typeterm_test.go

    		"int ~int ~int ∅",
    		"int string int string",
    		"int ~string int ~string",
    		"int myInt int myInt",
    		"~int ~string ~int ~string",
    		"~int myInt ~int ∅",
    
    		// union is symmetric, but the result order isn't - repeat symmetric cases explicitly
    		"𝓤 ∅ 𝓤 ∅",
    		"int ∅ int ∅",
    		"~int ∅ ~int ∅",
    		"myInt ∅ myInt ∅",
    		"int 𝓤 𝓤 ∅",
    		"~int 𝓤 𝓤 ∅",
    		"myInt 𝓤 𝓤 ∅",
    		"~int int ~int ∅",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. 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)
  4. src/crypto/rsa/example_test.go

    // DecryptPKCS1v15SessionKey is designed for this situation and copies
    // the decrypted, symmetric key (if well-formed) in constant-time over
    // a buffer that contains a random key. Thus, if the RSA result isn't
    // well-formed, the implementation uses a random key in constant time.
    func ExampleDecryptPKCS1v15SessionKey() {
    	// The hybrid scheme should use at least a 16-byte symmetric key. Here
    	// we read the random key that will be used if the RSA decryption isn't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 22:52:37 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

    // the value range isn't straddling zero, an empty type is returned. The min/max
    // are adjusted to be symmetric if `symmetric` flag is set to True. And
    // `symmetric` can only be set to true when it is signed and narrow_range.
    Type GetUniformQuantizedTypeForWeight(ElementsAttr attr, bool symmetric,
                                          unsigned num_bits, bool is_signed,
                                          bool narrow_range,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.cc

        // works for both this value and 0.0.
        if (single_value < 0.0) {
          mins[0] = single_value;
          maxs[0] = symmetric ? -single_value : 0.0;
        } else if (single_value > 0.0) {
          mins[0] = symmetric ? -single_value : 0.0;
          maxs[0] = single_value;
        } else {
          mins[0] = maxs[0] = single_value;
        }
        for (int i = 1; i < dim_size; ++i) {
    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. tensorflow/compiler/mlir/quantization/common/uniform_quantized_types.h

    // i.e. [-128, 127]. Assumes asymmetric quantization, meaning the zero point
    // value can be a non-zero value.
    // If `narrow_range` is set true (ex: for weights), a restricted range of
    // integers will be used for symmetric mapping, i.e. [-127, 127].
    UniformQuantizedType CreateI8F32UniformQuantizedType(Location loc,
                                                         MLIRContext& context,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/pointers/KtSymbolPointer.kt

        public abstract fun restoreSymbol(analysisSession: KaSession): S?
    
        /**
         * @return **true** if [other] pointer can be restored to the same symbol. The operation is symmetric and transitive.
         */
        public open fun pointsToTheSameSymbolAs(other: KaSymbolPointer<KaSymbol>): Boolean = this === other
    
        override fun toString(): String = renderAsDataClassToString()
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/insert_weight_param.cc

        Type weight_type;
        if (IsPerTensor(weight_only_ptq)) {
          weight_type = dyn_cast<quant::QuantizedType>(
              quant::GetUniformQuantizedTypeForWeight(
                  attr, /*symmetric=*/true, /*num_bits=*/8, /*is_signed=*/true,
                  /*narrow_range=*/true, /*legacy_float_scale=*/false));
        } else {
          int quantization_dimension = GetQuantizationDimension(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

        const bool symmetric) {
      const float eps = 1e-7;
      ASSERT_THAT(*float_quant_params.min(), SizeIs(1));
      ASSERT_THAT(*float_quant_params.max(), SizeIs(1));
      float float_min = std::min(0.f, float_quant_params.min()->Get(0));
      float float_max = std::max(0.f, float_quant_params.max()->Get(0));
      if (symmetric) {
        // When the symmetric case, ConvertStatsToQDQs in PrepareQuantizePass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
Back to top