Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SYMMETRIC (0.21 sec)

  1. 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)
  2. src/go/types/unify.go

    			u.tracef("depth %d >= %d", u.depth, unificationDepthLimit)
    		}
    		if panicAtUnificationDepthLimit {
    			panic("unification reached recursion depth limit")
    		}
    		return false
    	}
    
    	// Unification is symmetric, so we can swap the operands.
    	// Ensure that if we have at least one
    	// - defined type, make sure one is in y
    	// - type parameter recorded with u, make sure one is in x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/unify.go

    			u.tracef("depth %d >= %d", u.depth, unificationDepthLimit)
    		}
    		if panicAtUnificationDepthLimit {
    			panic("unification reached recursion depth limit")
    		}
    		return false
    	}
    
    	// Unification is symmetric, so we can swap the operands.
    	// Ensure that if we have at least one
    	// - defined type, make sure one is in y
    	// - type parameter recorded with u, make sure one is in x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      }];
    
      let description = [{
    The input is a tensor of shape `[..., M, M]` whose inner-most 2 dimensions
    form square matrices.
    
    The input has to be symmetric and positive definite. Only the lower-triangular
    part of the input will be used for this operation. The upper-triangular part
    will not be read.
    
    The output is a tensor of the same shape as the input
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  5. RELEASE.md

            `TFLiteConverter.from_saved_model`.
        *   Added DEPTH_TO_SPACE support in Post training quantization.
        *   Added dynamic range quantization support for the BatchMatMul op.
            *   Both symmetric and asymmetric quantized input tensor are supported.
        *   Add `RFFT2D` as builtin op. (`RFFT2D` also supports `RFFTD`.) Currently
            only supports float32 input.
        *   Add 5D support to `SLICE` op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top