Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for rangeMin (0.11 sec)

  1. src/cmd/compile/internal/ssa/lca.go

    		}
    	}
    
    	// Compute fast range-minimum query data structure
    	rangeMin := make([][]ID, 0, bits.Len64(uint64(len(tour))))
    	rangeMin = append(rangeMin, tour) // 1-size windows are just the tour itself.
    	for logS, s := 1, 2; s < len(tour); logS, s = logS+1, s*2 {
    		r := make([]ID, len(tour)-s+1)
    		for i := 0; i < len(tour)-s+1; i++ {
    			bid := rangeMin[logS-1][i]
    			bid2 := rangeMin[logS-1][i+s/2]
    			if blocks[bid2].depth < blocks[bid].depth {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 21:52:15 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. test/rangegen.go

    // license that can be found in the LICENSE file.
    
    // Torture test for range-over-func.
    //
    // cmd/internal/testdir runs this like
    //
    //	go run rangegen.go >x.go
    //	go run x.go
    //
    // but a longer version can be run using
    //
    //	go run rangegen.go long
    //
    // In that second form, rangegen takes care of compiling
    // and running the code it generates, in batches.
    // That form takes 10-20 minutes to run.
    
    package main
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 23:35:19 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  3. src/internal/types/testdata/spec/range_int.go

    Robert Griesemer <******@****.***> 1713826379 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:56:00 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. cmd/api-headers.go

    		}
    
    		if !isSet {
    			w.Header().Set(k, v)
    		}
    	}
    
    	var start, rangeLen int64
    	totalObjectSize, err := objInfo.GetActualSize()
    	if err != nil {
    		return err
    	}
    
    	if rs == nil && opts.PartNumber > 0 {
    		rs = partNumberToRangeSpec(objInfo, opts.PartNumber)
    	}
    
    	// For providing ranged content
    	start, rangeLen, err = rs.GetOffsetLength(totalObjectSize)
    	if err != nil {
    		return err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 04:44:00 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/quantization/quantization_info.proto

        int32 quantize_axis = 2;
        // The minimum allowed value of the fixed-point data range.
        // This can also be used to derive the sign of storage type.
        int32 range_min = 3;
        // The minimum allowed value of the fixed-point data range.
        int32 range_max = 4;
      }
    
      // The quantization parameters for a named tensor.
      message QuantParams {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 08 03:45:04 UTC 2019
    - 2.3K bytes
    - Viewed (0)
Back to top