Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 102 for asymmetric (0.14 sec)

  1. 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)
  2. 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)
  3. tensorflow/compiler/mlir/quantization/tensorflow/ops/tf_quantize_op.cc

        PatternRewriter& rewriter, TF::ConstOp op,
        tensorflow::quantization::QuantizationComponentSpec& weight_spec) {
      // TODO - b/278949920: Enable Per-Channel Quantization for XLA Opset
      // Currently, support symmetric, per-tensor, signed int8
      const bool kIsNarrowRange = true;
      const bool kIsSigned = true;
      const int kBitWidth = 8;
    
      DenseFPElementsAttr attr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.29.md

    ### Feature
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  5. src/math/big/rat_test.go

    		testRatBin(t, i, "Add", (*Rat).Add, arg)
    
    		arg = ratBinArg{test.y, test.x, test.sum}
    		testRatBin(t, i, "Add symmetric", (*Rat).Add, arg)
    
    		arg = ratBinArg{test.sum, test.x, test.y}
    		testRatBin(t, i, "Sub", (*Rat).Sub, arg)
    
    		arg = ratBinArg{test.sum, test.y, test.x}
    		testRatBin(t, i, "Sub symmetric", (*Rat).Sub, arg)
    
    		arg = ratBinArg{test.x, test.y, test.prod}
    		testRatBin(t, i, "Mul", (*Rat).Mul, arg)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 07 00:15:59 UTC 2022
    - 18.9K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-include-tf2xla-fallback.mlir

      // NO_FALLBACK: tf.MirrorPad
      // SUPPORTED_FALLBACK_DEVICE-NOT: tf.MirrorPad
      // UNSPECIFIED_FALLBACK_DEVICE: tf.MirrorPad
      // UNSUPPORTED_FALLBACK_DEVICE: tf.MirrorPad
      %1 = "tf.MirrorPad"(%arg0, %0) {mode = "SYMMETRIC"} : (tensor<2x3xcomplex<f64>>, tensor<2x2xi32>) -> tensor<4x7xcomplex<f64>>
      func.return %1 : tensor<4x7xcomplex<f64>>
    }
    
    // BatchMatMulV2 has native as well as fallback lowering patterns available.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 16 19:04:03 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. src/internal/types/testdata/examples/constraints.go

    	_[T interface{ int|T /* ERROR "term cannot be a type parameter" */ }] struct{}
    )
    
    // Multiple embedded union elements are intersected. The order in which they
    // appear in the interface doesn't matter since intersection is a symmetric
    // operation.
    
    type myInt1 int
    type myInt2 int
    
    func _[T interface{ myInt1|myInt2; ~int }]() T { return T(0) }
    func _[T interface{ ~int; myInt1|myInt2 }]() T { return T(0) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_op_enums.td

          TFL_FullyConnectedOptionsWeightFormatAttr, TFL_FCWOEnum_Shuffled4x16i8.symbol>;
    
    // MirrorPadding type attributes
    def TFL_MIRRORPAD_Reflect : I32EnumAttrCase<"REFLECT", 0>;
    def TFL_MIRRORPAD_Symmetric : I32EnumAttrCase<"SYMMETRIC", 1>;
    def TFL_MirrorPaddingType : I32EnumAttr<"MirrorPaddingType", "mirror_pad_enum", [
          TFL_MIRRORPAD_Reflect, TFL_MIRRORPAD_Symmetric
        ]> {
      let genSpecializedAttr = 0;
      let cppNamespace = "::mlir::TFL";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 20 00:05:24 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectStateInternal.java

            // The Android plugin relies on this behaviour.
            return state.ordinal() > State.IN_EVALUATE.ordinal();
        }
    
        public boolean isConfiguring() {
            // Intentionally asymmetrical to getExecuted()
            // This prevents recursion on `project.afterEvaluate { project.evaluate() }`
            return state == State.IN_BEFORE_EVALUATE || state == State.IN_EVALUATE || state == State.IN_AFTER_EVALUATE;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:05 UTC 2021
    - 3.8K bytes
    - Viewed (0)
Back to top