Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Shift1 (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    elements are shifted positively (towards larger indices) along the dimension
    specified by `axis[i]`. Negative shifts will roll the elements in the opposite
    direction.}]>:$shift,
        Arg<TF_I32OrI64Tensor, [{Dimension must be 0-D or 1-D. `axis[i]` specifies the dimension that the shift
    `shift[i]` should occur. If the same axis is referenced more than once, the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  2. src/time/format.go

    		// importing fmt or strconv
    		// - try to use FixedZone, which would also require escaping the name
    		// and would represent e.g. "America/Los_Angeles" daylight saving time
    		// shifts inaccurately
    		// - use the pointer format, which is no worse than you'd get with the
    		// old fmt.Sprintf("%#v", t) format.
    		//
    		// Of these, Location(loc.name) is the least disruptive. This is an edge
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          // offset = d<=0 ? max_diag_len - diag_len_d : 0
          cmp = rewriter.create<TF::LessEqualOp>(loc, d, b_zero);
        } else {
          // offset = 0
          cmp = b_false;
        }
    
        // This offset shifts the diagonals to the "left" or "right", depending
        // on alignment.
        Value offset = rewriter.create<SelectOp>(
            loc, b_zero.getType(), cmp,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        types. Examples of quantized types are TF_Qint8 or TF_Quint8.
    
        An example is TF_DequantizeOp, which converts a quantized type to a float.
        This op is rewritten to generic ops that perform the scale and shift
        and can operate on non-quantized types.
    
        Currently, TF_DequantizeOp is the only op with a lowering that falls
        in this category. When more lowerings are added (e.g. QuantizeV2Op),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    	etype1 := s.concreteEtype(t)
    	etype2 := s.concreteEtype(u)
    	x, ok := shiftOpToSSA[opAndTwoTypes{op, etype1, etype2}]
    	if !ok {
    		s.Fatalf("unhandled shift op %v etype=%s/%s", op, etype1, etype2)
    	}
    	return x
    }
    
    func (s *state) uintptrConstant(v uint64) *ssa.Value {
    	if s.config.PtrSize == 4 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. RELEASE.md

    *   Update gRPC release to 0.14.
    *   Eigen version upgrade.
    *   Switch to eigen thread pool
    *   `tf.nn.moments()` now accepts a `shift` argument. Shifting by a good
        estimate of the mean improves numerical stability. Also changes the behavior
        of the `shift` argument to `tf.nn.sufficient_statistics()`.
    *   Performance improvements
    *   Many bugfixes
    *   Many documentation fixes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top