Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Unbounded (0.16 sec)

  1. src/database/sql/sql.go

    func (ci *ColumnType) Name() string {
    	return ci.name
    }
    
    // Length returns the column type length for variable length column types such
    // as text and binary field types. If the type length is unbounded the value will
    // be [math.MaxInt64] (any database limits will still apply).
    // If the column type is not variable length, such as an int, or if not supported
    // by the driver ok is false.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    			// starts running again when that timer expiration may
    			// cause Go code to run again).
    			//
    			// However, netbsd has a kernel bug that sometimes
    			// misses netpollBreak wake-ups, which can lead to
    			// unbounded delays servicing timers. If we detect this
    			// overrun, then startm to get something to handle the
    			// timer.
    			//
    			// See issue 42515 and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        and sets the shape of these inputs to be dynamic shaped. This will ensure
        that the generated HLO program is correctly reflecting the dynamic shape.
      }];
    
      // Required for mhlo bounded shape extension.
      let dependentDialects = ["mhlo::MhloDialect"];
      let constructor = "TFTPU::CreateTPUAnnotateDynamicShapeInputsPass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      if (auto input_ty = mlir::dyn_cast<RankedTensorType>(old_arg_type)) {
        ArrayRef<int64_t> bounds = hlo::encodingToBounds(input_ty.getEncoding());
        // The input type has bounded dynamic dimension.
        if (!bounds.empty()) {
          SmallVector<int64_t> new_bounds(bounds.begin(), bounds.end());
          SmallVector<int64_t> new_shape(shape.begin(), shape.end());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top