Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for minMax (0.14 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. 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)
  4. 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)
  5. 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)
  6. tensorflow/compiler/mlir/lite/quantization/tests/import_quant_stats.mlir

    // RUN: tf-opt %s -quant-import-stats --quant-test-stats='entries { name: "op" params { min_max { min: -1 max: 1 } } } entries { name: "op_0:0" params { min_max { min: -2 max: 2 } } }  entries { name_regex: "op_*" params { min_max { min: -3 max: 3 } } }' | FileCheck %s
    
    
    // CHECK-LABEL: import_stats_skip
    func.func @import_stats_skip(%arg0: tensor<4xf32>, %cst: tensor<i32>) -> (tensor<2xf32>,tensor<2xf32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 06:25:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/end2end/quant_stats.pbtxt.stats

    entries {
      name: "Add"
      params {
        min_max {
          min: -1
          max: 1
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 08 10:14:32 UTC 2019
    - 88 bytes
    - Viewed (0)
  8. src/internal/trace/batchcursor.go

    }
    
    func min3(b []*batchCursor, i0, i1, i2 int) int {
    	minIdx := i0
    	minT := maxTime
    	if i0 < len(b) {
    		minT = b[i0].ev.time
    	}
    	if i1 < len(b) {
    		if t := b[i1].ev.time; t < minT {
    			minT = t
    			minIdx = i1
    		}
    	}
    	if i2 < len(b) {
    		if t := b[i2].ev.time; t < minT {
    			minT = t
    			minIdx = i2
    		}
    	}
    	return minIdx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. src/math/acos_s390x.s

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    // Minimax polynomial coefficients and other constants
    DATA ·acosrodataL13<> + 0(SB)/8, $0.314159265358979323E+01   //pi
    DATA ·acosrodataL13<> + 8(SB)/8, $-0.0
    DATA ·acosrodataL13<> + 16(SB)/8, $0x7ff8000000000000    //Nan
    DATA ·acosrodataL13<> + 24(SB)/8, $-1.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 20 17:42:08 UTC 2018
    - 3.7K bytes
    - Viewed (0)
  10. src/math/tan_s390x.s

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    // Minimax polynomial approximations
    DATA ·tanrodataL13<> + 0(SB)/8, $0.181017336383229927e-07
    DATA ·tanrodataL13<> + 8(SB)/8, $-.256590857271311164e-03
    DATA ·tanrodataL13<> + 16(SB)/8, $-.464359274328689195e+00
    DATA ·tanrodataL13<> + 24(SB)/8, $1.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 23:30:00 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top