Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for rangeMin (0.13 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)
  6. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

       (TF_SelectV2Op:$num_upper_or_n (TF_LessOp $num_upper, $zero),
                                      $n, $num_upper),
       (TF_RangeOp:$range_m $zero, $m, $one),
       (TF_RangeOp:$range_n $zero, $n, $one),
       (TF_SubOp:$offset (TF_ExpandDimsOp $range_m, $neg_one), $range_n),
       (TF_LogicalAndOp:$indicator (TF_LessEqualOp $offset, $num_lower_or_m),
                                   (TF_GreaterEqualOp $offset,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. cmd/object-handlers.go

    						// For providing ranged content
    						start, rangeLen, err := rs.GetOffsetLength(ci.Size)
    						if err != nil {
    							start, rangeLen = 0, ci.Size
    						}
    
    						// Set content length.
    						w.Header().Set(xhttp.ContentLength, strconv.FormatInt(rangeLen, 10))
    						if rs != nil {
    							contentRange := fmt.Sprintf("bytes %d-%d/%d", start, start+rangeLen-1, ci.Size)
    							w.Header().Set(xhttp.ContentRange, contentRange)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/constant-fold.mlir

        }, {
          "tf.Yield"(%arg1) : (tensor<f32>) -> ()
        }) { is_stateless = true}: (tensor<i1>) -> tensor<f32>
      func.return %0 : tensor<f32>
    }
    
    // CHECK-LABEL: @range_int
    func.func @range_int() -> tensor<?xi32> {
      %cst = arith.constant dense<0> : tensor<i32>
      %cst_1 = arith.constant dense<4> : tensor<i32>
      %cst_2 = arith.constant dense<1> : tensor<i32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 31 23:22:24 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/const-fold.mlir

      // CHECK: return %[[CST]]
      %0 = "tfl.pseudo_const"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
      func.return %0 : tensor<i32>
    }
    
    
    // CHECK-LABEL: @range_int
    func.func @range_int() -> tensor<?xi32> {
      %cst = arith.constant dense<0> : tensor<i32>
      %cst_1 = arith.constant dense<4> : tensor<i32>
      %cst_2 = arith.constant dense<1> : tensor<i32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

      // CHECK-DAG: %[[RANGE_N:.*]] = "tf.Range"(%[[ZERO]], %[[N]], %[[ONE]]) : (tensor<i32>, tensor<i32>, tensor<i32>) -> tensor<?xi32>
      // CHECK-DAG: %[[EXPAND_DIMS:.*]] = "tf.ExpandDims"(%[[RANGE_M]], %[[NEG_ONE]]) : (tensor<?xi32>, tensor<i32>) -> tensor<?x1xi32>
      // CHECK-DAG: %[[OFFSET:.*]] = "tf.Sub"(%[[EXPAND_DIMS]], %[[RANGE_N]]) : (tensor<?x1xi32>, tensor<?xi32>) -> tensor<?x?xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
Back to top