Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 78 for minMax (0.19 sec)

  1. src/runtime/minmax.go

    Matthew Dempsky <******@****.***> 1684455363 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 18:15:22 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/quantization_info.proto

        int32 zero_point = 2;
      }
    
      // Params to quantize the axis. Only one of the field can be used.
      message PerAxisParams {
        oneof params_oneof {
          // min/max of the ranges.
          MinMax min_max = 1;
    
          // affine parameters to quantize the per axis value.
          AffineParams affine_params = 2;
        }
      }
    
      // The metadata defines the target properties.
      message Metadata {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 08 03:45:04 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/javadoc.css

    .two-column-summary {
        display: grid;
        grid-template-columns: minmax(25%, max-content) minmax(25%, auto);
    }
    .three-column-summary {
        display: grid;
        grid-template-columns: minmax(15%, max-content) minmax(20%, max-content) minmax(20%, auto);
    }
    .three-column-release-summary {
        display: grid;
        grid-template-columns: minmax(40%, max-content) minmax(10%, max-content) minmax(40%, auto);
    }
    .four-column-summary {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/conc_alloc.go

    	rap.ascendingIndices[i], rap.ascendingIndices[j] = rap.ascendingIndices[j], rap.ascendingIndices[i]
    }
    
    // minMax records the minimum and maximum value seen while scanning a set of numbers
    type minMax struct {
    	min float64
    	max float64
    }
    
    // note scans one more number
    func (mm *minMax) note(x float64) {
    	mm.min = math.Min(mm.min, x)
    	mm.max = math.Max(mm.max, x)
    }
    
    const MinTarget = 0.001
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_min_max.h

    #include "tensorflow/compiler/mlir/quantization/tensorflow/quantization_options.pb.h"
    
    namespace tensorflow {
    namespace calibrator {
    
    using ::stablehlo::quantization::CalibrationOptions;
    
    // MinMax calibration calculates the global min and global max values.
    // global min = min of given sample inputs
    // global max = max of given sample inputs
    class CalibrationStatisticsCollectorMinMax
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 03:57:26 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. internal/s3select/sql/aggregation.go

    		}
    		argVal.setFloat(f)
    		err = e.aggregate.runningSum.arithOp(opPlus, argVal)
    
    	case aggFnMin:
    		err = e.aggregate.runningMin.minmax(argVal, false, isFirstRow)
    
    	case aggFnMax:
    		err = e.aggregate.runningMax.minmax(argVal, true, isFirstRow)
    
    	default:
    		err = errInvalidAggregation
    	}
    
    	return err
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_algorithm.py

        min_value, max_value = mse_min[1], mse_min[2]
        return min_value, max_value
    
    
    @_implements(_CalibrationMethod.CALIBRATION_METHOD_MIN_MAX)
    class _MinMax(_CalibrationAlgorithmBase):
      """MinMaxCalibrationAlgorithm for calculating min and max values of calibration result.
    
      MinMax calibration calculates the global min and global max values.
    
      global min = min of given sample inputs
      global max = max of given sample inputs
      """
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/converter_gen.cc

      }
    
      os << "  return std::nullopt;\n"
            "}\n";
    }
    
    // Emits functions that return the min/max operand numbers for a given tflite op
    // name.
    //
    // Signature:
    // llvm::MinMax mlir::OperandNumbersMinMax(llvm::StringRef op_name) {
    //   if(const auto *op = op_union.AsOptions()) {
    //     return {min, max};
    //   }
    //   ...
    //   return {0, 0};
    // }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_operator.h

    // While the last several tensors could be optional tensors for an tfl op, the
    // number of input operands could vary. This function gets the min/max number of
    // operands from tflite op name.
    llvm::MinMax OperandNumbersMinMax(llvm::StringRef op_name);
    
    // Populates the `custom_code` and `custom_options` to attributes.
    // `custom_code` is used to identify CustomOp.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 21:00:09 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/walk.go

    		case ir.OCONV:
    			n := n.(*ir.ConvExpr)
    			return ssagen.Arch.SoftFloat && (isSoftFloat(n.Type()) || isSoftFloat(n.X.Type()))
    
    		case ir.OMIN, ir.OMAX:
    			// string or float requires runtime call, see (*ssagen.state).minmax method.
    			return n.Type().IsString() || n.Type().IsFloat()
    
    		case ir.OLITERAL, ir.ONIL, ir.ONAME, ir.OLINKSYMOFFSET, ir.OMETHEXPR,
    			ir.OAND, ir.OANDNOT, ir.OLSH, ir.OOR, ir.ORSH, ir.OXOR, ir.OCOMPLEX, ir.OMAKEFACE,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:56:00 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top