Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,504 for integers (1.18 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

    // Rint is specified as RoundHalfToEven, which happens to be the same behavior
    // as TF_RoundOp, so lower to TF_RoundOp.
    def LowerRintOp : Pat<(TF_RintOp:$res TF_FloatTensor:$input), (TF_RoundOp $input)>;
    
    // Rounds on integers should just be bypassed.
    def LowerRoundOpOnIntTensor : Pat<
      (TF_RoundOp:$res TF_IntTensor:$input),
      (TF_IdentityOp $input)>;
    
    // Implements TF Round on floats using basic operations. TF Round is specified
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/ir/tfr_ops.td

    //===----------------------------------------------------------------------===//
    
    def TFR_TFRQuantActRangeOp : TFR_Op<"quant_act_range", [Pure]> {
      let description = [{
       The `quant_act_range` returns the a pair of integers to indicate the fixed
       range for the fused activation `act` with the quantization defined by the
       `scale` and `zero point`. Currently, the allowed activations are
       `NONE`, `RELU`, `RELU6` and `RELU_N1_TO_1`.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. src/regexp/regexp.go

    	var dstCap [2]int
    	a := re.doExecute(nil, b, "", 0, 2, dstCap[:0])
    	if a == nil {
    		return nil
    	}
    	return b[a[0]:a[1]:a[1]]
    }
    
    // FindIndex returns a two-element slice of integers defining the location of
    // the leftmost match in b of the regular expression. The match itself is at
    // b[loc[0]:loc[1]].
    // A return value of nil indicates no match.
    func (re *Regexp) FindIndex(b []byte) (loc []int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  4. src/fmt/format.go

    	f.zero = oldZero
    }
    
    // fmtInteger formats signed and unsigned integers.
    func (f *fmt) fmtInteger(u uint64, base int, isSigned bool, verb rune, digits string) {
    	negative := isSigned && int64(u) < 0
    	if negative {
    		u = -u
    	}
    
    	buf := f.intbuf[0:]
    	// The already allocated f.intbuf with a capacity of 68 bytes
    	// is large enough for integer formatting when no precision or width is set.
    	if f.widPresent || f.precPresent {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.cc

        if (mlir::isa<StringAttr>(element)) {
          continue;
        }
        if (auto integer = mlir::dyn_cast<IntegerAttr>(element)) {
          if (integer.getValue().getBitWidth() == 64) {
            continue;
          }
        }
        return op->emitError() << "'" << kTfSavedModelIndexPathAttr
                               << "' elements should be strings or 64-bit integers";
      }
      return mlir::success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  6. src/fmt/doc.go

    (and %v reading into a string) stops consuming input at the first
    space or newline character.
    
    The familiar base-setting prefixes 0b (binary), 0o and 0 (octal),
    and 0x (hexadecimal) are accepted when scanning integers
    without a format or with the %v verb, as are digit-separating
    underscores.
    
    Width is interpreted in the input text but there is no
    syntax for scanning with a precision (no %5.2f, just %5f).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_cluster_util.cc

                                                   GraphCycles* cycles) {
      for (int i = 0; i < graph->num_node_ids(); ++i) {
        // We rely on the node IDs in the cycle detection graph being consecutive
        // integers starting from 0.
        CHECK_EQ(i, cycles->NewNode());
      }
    
      // Compute the loop structure of the graph.
      std::vector<ControlFlowInfo> control_flow_info;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  8. prow/config/calico.yaml

                    type: integer
                  vxlanMTUV6:
                    description: 'VXLANMTUV6 is the MTU to set on the IPv6 VXLAN tunnel
                      device. See Configuring MTU [Default: 1390]'
                    type: integer
                  vxlanPort:
                    type: integer
                  vxlanVNI:
                    type: integer
                  windowsManageFirewallRules:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

    def BothElementTypesSameWidthIntOrFloat : Constraint<CPred<
      "getElementTypeOrSelf($0.getType()).isIntOrFloat() && "
      "getElementTypeOrSelf($1.getType()).isIntOrFloat()">,
      "element types must be integers or floats">;
    
    // TODO(mgester): Due to restrictions of xla::BitcastConvertType we currently
    // only lower if both input and output types are int or float and have same width
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  10. src/time/zoneinfo_read.go

    	} else {
    		switch p[0] {
    		case 0:
    			version = 1
    		case '2':
    			version = 2
    		case '3':
    			version = 3
    		default:
    			return nil, errBadData
    		}
    	}
    
    	// six big-endian 32-bit integers:
    	//	number of UTC/local indicators
    	//	number of standard/wall indicators
    	//	number of leap seconds
    	//	number of transition times
    	//	number of local time zones
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top